{"openapi":"3.1.0","info":{"title":"ALT LABS Platform API","version":"1.0.0-beta","description":"Unified API for RND TOO (rndtoo.com), Organic OS (organic-os.com), and REGEN (useregen.com). Free while in beta. Health-content responses always include a disclaimer field. MCP server: https://mcp.altlaboratories.com/mcp - Docs: https://docs.altlaboratories.com"},"servers":[{"url":"https://platform.altlaboratories.com"}],"components":{"securitySchemes":{"ApiKey":{"type":"http","scheme":"bearer","description":"Platform API key (alt_live_...). Mint one via POST /v1/keys with an app session token."}},"schemas":{"MintKeyResponse":{"type":"object","properties":{"key":{"type":"string","description":"The raw API key. Shown exactly once - store it now."},"api_key":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"name":{"type":"string"},"key_prefix":{"type":"string"},"scopes":{"type":"array","items":{"type":"string"}},"is_active":{"type":"boolean"},"created_at":{"type":"string"},"last_used_at":{"type":["string","null"]},"expires_at":{"type":["string","null"]}},"required":["id","name","key_prefix","scopes","is_active","created_at","last_used_at","expires_at"]}},"required":["key","api_key"]},"ErrorResponse":{"type":"object","properties":{"error":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"details":{"type":"object","additionalProperties":{}}},"required":["code","message"]},"request_id":{"type":"string"}},"required":["error","request_id"]},"OosEntitySummary":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"category":{"type":["string","null"]}},"required":["id","name","category"]},"OosListResponse":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/OosEntitySummary"}},"next_cursor":{"type":["string","null"]},"disclaimer":{"type":"string"}},"required":["data","next_cursor","disclaimer"]},"OosEntityDetail":{"type":"object","additionalProperties":{}},"OosDetailResponse":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/OosEntityDetail"},"disclaimer":{"type":"string"}},"required":["data","disclaimer"]},"OosInteraction":{"type":"object","properties":{"id":{"type":"string"},"remedyId":{"type":"string"},"remedyName":{"type":"string"},"drugOrClass":{"type":"string"},"severity":{"type":"string","enum":["CRITICAL","HIGH","MODERATE","LOW"]},"mechanism":{"type":"string"},"clinicalEffect":{"type":"string"},"recommendation":{"type":"string"}},"required":["id","remedyId","remedyName","drugOrClass","severity","mechanism","clinicalEffect","recommendation"]},"RndtooBeliefSummary":{"type":"object","properties":{"id":{"type":"string"},"slug":{"type":"string"},"title":{"type":"string"},"world":{"type":["string","null"]},"core_truth":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"display_order":{"type":["number","null"]}},"required":["id","slug","title","world","core_truth","tags","display_order"]},"RegenRowsResponse":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","additionalProperties":{}}},"next_cursor":{"type":"null"}},"required":["data","next_cursor"]},"AltJsonResponse":{"type":"object","properties":{"data":{"type":"object","additionalProperties":{}}},"required":["data"]}},"parameters":{}},"paths":{"/v1/keys":{"post":{"summary":"Mint a platform API key (requires an app session token)","description":"Authenticate with the Supabase session access token from rndtoo.com, organic-os.com, or useregen.com. Links your identity across apps by email and returns the raw key exactly once.","tags":["Keys"],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":80,"default":"default"}}}}}},"responses":{"201":{"description":"Key minted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MintKeyResponse"}}}},"401":{"description":"Invalid session","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"security":[{"ApiKey":[]}],"summary":"List the caller's API keys (raw keys are never returned)","tags":["Keys"],"responses":{"200":{"description":"Key summaries","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"name":{"type":"string"},"key_prefix":{"type":"string"},"scopes":{"type":"array","items":{"type":"string"}},"is_active":{"type":"boolean"},"created_at":{"type":"string"},"last_used_at":{"type":["string","null"]},"expires_at":{"type":["string","null"]}},"required":["id","name","key_prefix","scopes","is_active","created_at","last_used_at","expires_at"]}}},"required":["data"]}}}}}}},"/v1/keys/{id}":{"delete":{"security":[{"ApiKey":[]}],"summary":"Revoke one of the caller's API keys","tags":["Keys"],"parameters":[{"schema":{"type":"string","format":"uuid"},"required":true,"name":"id","in":"path"}],"responses":{"200":{"description":"Revocation result","content":{"application/json":{"schema":{"type":"object","properties":{"revoked":{"type":"boolean"}},"required":["revoked"]}}}},"404":{"description":"No such key","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/me":{"get":{"security":[{"ApiKey":[]}],"summary":"Introspect the calling key: identity, linked apps, scopes, usage, limits","tags":["Platform"],"responses":{"200":{"description":"Key context","content":{"application/json":{"schema":{"type":"object","properties":{"identity":{"type":"object","properties":{"email":{"type":"string"},"linked_apps":{"type":"object","properties":{"rndtoo":{"type":"boolean"},"oos":{"type":"boolean"},"regen":{"type":"boolean"}},"required":["rndtoo","oos","regen"]}},"required":["email","linked_apps"]},"key":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"name":{"type":"string"},"key_prefix":{"type":"string"},"scopes":{"type":"array","items":{"type":"string"}},"is_active":{"type":"boolean"},"created_at":{"type":"string"},"last_used_at":{"type":["string","null"]},"expires_at":{"type":["string","null"]}},"required":["id","name","key_prefix","scopes","is_active","created_at","last_used_at","expires_at"]},"plan_snapshot":{"type":"object","additionalProperties":{"anyOf":[{"type":"string"},{"type":"boolean"}]}},"usage_today":{"type":"object","additionalProperties":{"type":"number"}},"limits":{"type":"object","properties":{"requests_per_min":{"type":"number"},"ai_daily_caps":{"type":"object","additionalProperties":{"type":"number"}}},"required":["requests_per_min","ai_daily_caps"]}},"required":["identity","key","plan_snapshot","usage_today","limits"]}}}},"401":{"description":"Auth error","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"}},"required":["code","message"]},"request_id":{"type":"string"}},"required":["error","request_id"]}}}}}}},"/v1/oos/remedies":{"get":{"security":[{"ApiKey":[]}],"summary":"List natural remedies (herbs, supplements, practices)","tags":["Organic OS"],"parameters":[{"schema":{"type":"integer","minimum":1,"maximum":100,"default":50},"required":false,"name":"limit","in":"query"},{"schema":{"type":"string","minLength":1},"required":false,"name":"cursor","in":"query"},{"schema":{"type":"string"},"required":false,"name":"category","in":"query"},{"schema":{"type":"string","maxLength":120},"required":false,"name":"q","in":"query"}],"responses":{"200":{"description":"Page of entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OosListResponse"}}}},"401":{"description":"Auth error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/oos/remedies/{id}":{"get":{"security":[{"ApiKey":[]}],"summary":"Get one of the remedies by id (or exact name)","tags":["Organic OS"],"parameters":[{"schema":{"type":"string"},"required":true,"name":"id","in":"path"}],"responses":{"200":{"description":"Full entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OosDetailResponse"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/oos/conditions":{"get":{"security":[{"ApiKey":[]}],"summary":"List health conditions with holistic context","tags":["Organic OS"],"parameters":[{"schema":{"type":"integer","minimum":1,"maximum":100,"default":50},"required":false,"name":"limit","in":"query"},{"schema":{"type":"string","minLength":1},"required":false,"name":"cursor","in":"query"},{"schema":{"type":"string"},"required":false,"name":"category","in":"query"},{"schema":{"type":"string","maxLength":120},"required":false,"name":"q","in":"query"}],"responses":{"200":{"description":"Page of entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OosListResponse"}}}},"401":{"description":"Auth error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/oos/conditions/{id}":{"get":{"security":[{"ApiKey":[]}],"summary":"Get one of the conditions by id (or exact name)","tags":["Organic OS"],"parameters":[{"schema":{"type":"string"},"required":true,"name":"id","in":"path"}],"responses":{"200":{"description":"Full entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OosDetailResponse"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/oos/toxins":{"get":{"security":[{"ApiKey":[]}],"summary":"List environmental and dietary toxins (NO TOX corpus)","tags":["Organic OS"],"parameters":[{"schema":{"type":"integer","minimum":1,"maximum":100,"default":50},"required":false,"name":"limit","in":"query"},{"schema":{"type":"string","minLength":1},"required":false,"name":"cursor","in":"query"},{"schema":{"type":"string"},"required":false,"name":"category","in":"query"},{"schema":{"type":"string","maxLength":120},"required":false,"name":"q","in":"query"}],"responses":{"200":{"description":"Page of entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OosListResponse"}}}},"401":{"description":"Auth error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/oos/toxins/{id}":{"get":{"security":[{"ApiKey":[]}],"summary":"Get one of the toxins by id (or exact name)","tags":["Organic OS"],"parameters":[{"schema":{"type":"string"},"required":true,"name":"id","in":"path"}],"responses":{"200":{"description":"Full entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OosDetailResponse"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/oos/biomarkers":{"get":{"security":[{"ApiKey":[]}],"summary":"List lab biomarkers with functional ranges","tags":["Organic OS"],"parameters":[{"schema":{"type":"integer","minimum":1,"maximum":100,"default":50},"required":false,"name":"limit","in":"query"},{"schema":{"type":"string","minLength":1},"required":false,"name":"cursor","in":"query"},{"schema":{"type":"string"},"required":false,"name":"category","in":"query"},{"schema":{"type":"string","maxLength":120},"required":false,"name":"q","in":"query"}],"responses":{"200":{"description":"Page of entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OosListResponse"}}}},"401":{"description":"Auth error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/oos/biomarkers/{id}":{"get":{"security":[{"ApiKey":[]}],"summary":"Get one of the biomarkers by id (or exact name)","tags":["Organic OS"],"parameters":[{"schema":{"type":"string"},"required":true,"name":"id","in":"path"}],"responses":{"200":{"description":"Full entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OosDetailResponse"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/oos/interactions":{"get":{"security":[{"ApiKey":[]}],"summary":"List documented herb-drug interactions, most severe first","tags":["Organic OS"],"parameters":[{"schema":{"type":"string"},"required":false,"name":"remedy","in":"query"},{"schema":{"type":"string"},"required":false,"name":"drug","in":"query"},{"schema":{"type":"string","enum":["CRITICAL","HIGH","MODERATE","LOW"]},"required":false,"name":"severity","in":"query"},{"schema":{"type":"integer","minimum":1,"maximum":100,"default":50},"required":false,"name":"limit","in":"query"}],"responses":{"200":{"description":"Matching interactions","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/OosInteraction"}},"disclaimer":{"type":"string"}},"required":["data","disclaimer"]}}}}}}},"/v1/oos/interactions/check":{"post":{"security":[{"ApiKey":[]}],"summary":"Cross-check a stack of remedies/supplements/medications for documented interactions","tags":["Organic OS"],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"string","minLength":1,"maxLength":120},"minItems":1,"maxItems":30}},"required":["items"]}}}},"responses":{"200":{"description":"Documented interactions among the submitted items, most severe first. Severity framing only - never a bare safe/unsafe verdict.","content":{"application/json":{"schema":{"type":"object","properties":{"matches":{"type":"array","items":{"$ref":"#/components/schemas/OosInteraction"}},"unmatched":{"type":"array","items":{"type":"string"}},"checked":{"type":"number"},"disclaimer":{"type":"string"}},"required":["matches","unmatched","checked","disclaimer"]}}}}}}},"/v1/oos/search":{"get":{"security":[{"ApiKey":[]}],"summary":"Search the whole Organic OS reference corpus","tags":["Organic OS"],"parameters":[{"schema":{"type":"string","minLength":2,"maxLength":120},"required":true,"name":"q","in":"query"},{"schema":{"type":"string","description":"Comma-separated subset of remedy,condition,toxin,biomarker"},"required":false,"name":"types","in":"query"},{"schema":{"type":"integer","minimum":1,"maximum":50,"default":20},"required":false,"name":"limit","in":"query"}],"responses":{"200":{"description":"Ranked hits","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"category":{"type":["string","null"]},"snippet":{"type":["string","null"]}},"required":["type","id","name","category","snippet"]}},"disclaimer":{"type":"string"}},"required":["data","disclaimer"]}}}}}}},"/v1/oos/me/stacks":{"get":{"security":[{"ApiKey":[]}],"summary":"The caller's saved remedy stacks (RLS-scoped)","tags":["Organic OS"],"responses":{"200":{"description":"Saved stacks, newest first","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","additionalProperties":{}}},"next_cursor":{"type":"null"},"disclaimer":{"type":"string"}},"required":["data","next_cursor","disclaimer"]}}}},"409":{"description":"No linked Organic OS account","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/oos/me/protocols":{"get":{"security":[{"ApiKey":[]}],"summary":"The caller's protocols (RLS-scoped, saved + practitioner-assigned)","tags":["Organic OS"],"responses":{"200":{"description":"Protocols, newest first","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","additionalProperties":{}}},"next_cursor":{"type":"null"},"disclaimer":{"type":"string"}},"required":["data","next_cursor","disclaimer"]}}}},"409":{"description":"No linked Organic OS account","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/rndtoo/beliefs":{"get":{"security":[{"ApiKey":[]}],"summary":"List the 75 foundational beliefs","tags":["RND TOO"],"parameters":[{"schema":{"type":"integer","minimum":1,"maximum":100,"default":50},"required":false,"name":"limit","in":"query"},{"schema":{"type":"string","minLength":1},"required":false,"name":"cursor","in":"query"},{"schema":{"type":"string","description":"Filter by world (inner/outer)"},"required":false,"name":"world","in":"query"}],"responses":{"200":{"description":"Belief library page, in display order","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/RndtooBeliefSummary"}},"next_cursor":{"type":["string","null"]}},"required":["data","next_cursor"]}}}},"401":{"description":"Auth error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/rndtoo/beliefs/{id}":{"get":{"security":[{"ApiKey":[]}],"summary":"Get one belief by slug or id","tags":["RND TOO"],"parameters":[{"schema":{"type":"string"},"required":true,"name":"id","in":"path"}],"responses":{"200":{"description":"Full belief record","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","additionalProperties":{}}},"required":["data"]}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/rndtoo/me/progress":{"get":{"security":[{"ApiKey":[]}],"summary":"The caller's recent practice log and streaks (RLS-scoped)","tags":["RND TOO"],"responses":{"200":{"description":"Last 90 days of practice plus streaks","content":{"application/json":{"schema":{"type":"object","properties":{"practice":{"type":"array","items":{"type":"object","additionalProperties":{}}},"streaks":{"type":["object","null"],"additionalProperties":{}}},"required":["practice","streaks"]}}}},"409":{"description":"Not linked","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/rndtoo/me/mastery":{"get":{"security":[{"ApiKey":[]}],"summary":"The caller's per-belief mastery scores (RLS-scoped)","tags":["RND TOO"],"responses":{"200":{"description":"Mastery scores","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","additionalProperties":{}}}},"required":["data"]}}}},"409":{"description":"Not linked","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/rndtoo/coach/messages":{"post":{"security":[{"ApiKey":[]}],"summary":"Talk to the Belief Coach (ai:coach, capped). SSE stream by default; ?stream=false buffers to JSON","tags":["RND TOO"],"parameters":[{"schema":{"type":"string","enum":["true","false"],"default":"true"},"required":false,"name":"stream","in":"query"}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","minLength":1,"maxLength":2000},"belief_slug":{"type":"string","maxLength":120},"conversation_history":{"type":"array","items":{"type":"object","properties":{"role":{"type":"string","enum":["user","assistant"]},"content":{"type":"string","maxLength":4000}},"required":["role","content"]},"maxItems":20}},"required":["message"]}}}},"responses":{"200":{"description":"Coach reply (existing free-tier coach caps also apply upstream)","content":{"application/json":{"schema":{"type":"object","properties":{"reply":{"type":"string"},"disclaimer":{"type":"string"}},"required":["reply","disclaimer"]}},"text/event-stream":{"schema":{"type":"string"}}}},"429":{"description":"AI cap reached","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/regen/me/kit":{"get":{"security":[{"ApiKey":[]}],"summary":"The caller's speaker media kit","tags":["REGEN"],"responses":{"200":{"description":"Media kit (null if not created yet)","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":["object","null"],"additionalProperties":{}}},"required":["data"]}}}},"409":{"description":"No linked REGEN account","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/regen/me/speeches":{"get":{"security":[{"ApiKey":[]}],"summary":"The caller's speeches (metadata; fetch one by id for full content)","tags":["REGEN"],"responses":{"200":{"description":"Rows, newest first","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegenRowsResponse"}}}},"409":{"description":"No linked REGEN account","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/regen/me/opportunities":{"get":{"security":[{"ApiKey":[]}],"summary":"The caller's booking opportunities with scores and pitch state","tags":["REGEN"],"responses":{"200":{"description":"Rows, newest first","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegenRowsResponse"}}}},"409":{"description":"No linked REGEN account","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/regen/me/campaigns":{"get":{"security":[{"ApiKey":[]}],"summary":"The caller's outreach campaigns","tags":["REGEN"],"responses":{"200":{"description":"Rows, newest first","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegenRowsResponse"}}}},"409":{"description":"No linked REGEN account","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/regen/me/speeches/{id}":{"get":{"security":[{"ApiKey":[]}],"summary":"One speech in full (including content_md)","tags":["REGEN"],"parameters":[{"schema":{"type":"string","format":"uuid"},"required":true,"name":"id","in":"path"}],"responses":{"200":{"description":"Speech","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","additionalProperties":{}}},"required":["data"]}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/regen/events":{"get":{"security":[{"ApiKey":[]}],"summary":"The shared speaking-events catalog (active events; not user-scoped)","tags":["REGEN"],"parameters":[{"schema":{"type":"string","description":"Filter by title text"},"required":false,"name":"q","in":"query"},{"schema":{"type":"integer","minimum":1,"maximum":100,"default":50},"required":false,"name":"limit","in":"query"}],"responses":{"200":{"description":"Events","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegenRowsResponse"}}}}}}},"/v1/regen/opportunities/{id}/pitch":{"post":{"security":[{"ApiKey":[]}],"summary":"Draft an AI pitch for one of the caller's opportunities (ai:pitch, capped)","tags":["REGEN"],"parameters":[{"schema":{"type":"string","format":"uuid"},"required":true,"name":"id","in":"path"}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"pitch_type":{"type":"string","enum":["email","linkedin","one-liner","follow-up"],"default":"email"},"speaker_talking_points":{"type":"string","maxLength":2000}}}}}},"responses":{"200":{"description":"Drafted pitch","content":{"application/json":{"schema":{"type":"object","properties":{"pitch":{"type":"string"},"subject":{"type":["string","null"]},"pitch_type":{"type":"string"},"framework":{"type":"string"}},"required":["pitch","subject","pitch_type"]}}}},"404":{"description":"No such opportunity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"429":{"description":"AI cap reached","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/alt/dashboard":{"get":{"security":[{"ApiKey":[]}],"summary":"Unified human dashboard: mind (RND TOO), body (Organic OS), voice (REGEN) in one view","tags":["Cross-app"],"responses":{"200":{"description":"Cross-app dashboard","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AltJsonResponse"}}}},"409":{"description":"Not linked","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/alt/year-in-review":{"get":{"security":[{"ApiKey":[]}],"summary":"Year-in-review across the ecosystem","tags":["Cross-app"],"parameters":[{"schema":{"type":"integer","minimum":2020,"maximum":2100},"required":false,"name":"year","in":"query"},{"schema":{"type":"string","enum":["fos","all"]},"required":false,"name":"scope","in":"query"}],"responses":{"200":{"description":"Review payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AltJsonResponse"}}}}}}},"/v1/alt/bridges/belief-to-biomarker":{"post":{"security":[{"ApiKey":[]}],"summary":"Correlate belief practice (RND TOO) with biomarker trends (Organic OS) - the mind-body bridge (ai:bridge, capped)","tags":["Cross-app"],"responses":{"200":{"description":"Bridge result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AltJsonResponse"}}}},"429":{"description":"AI cap reached","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/v1/alt/bridges/belief-to-communication":{"post":{"security":[{"ApiKey":[]}],"summary":"Link belief mastery (RND TOO) to communication patterns (REGEN) - the mind-voice bridge (ai:bridge, capped)","tags":["Cross-app"],"responses":{"200":{"description":"Bridge result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AltJsonResponse"}}}},"429":{"description":"AI cap reached","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}},"webhooks":{}}