{"openapi":"3.1.0","info":{"title":"Humanaism Atlas API","version":"1.0.0","description":"Public endpoints for the Humanaism Symbiosis Atlas. Read the live atlas, subscribe to The Signal newsletter, or claim an open territory.","contact":{"email":"humanaist@gmail.com"}},"servers":[{"url":"https://humanaism.com/api"}],"paths":{"/healthz":{"get":{"summary":"Service health and counts","responses":{"200":{"description":"OK"}}}},"/atlas":{"get":{"summary":"Full read manifest (arms + domains + entities including approved claims)","responses":{"200":{"description":"AtlasManifest"}}}},"/entities":{"get":{"summary":"List of approved claim entities only","responses":{"200":{"description":"EntityList"}}}},"/subscribe":{"post":{"summary":"Subscribe to The Humanaism Signal newsletter","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email"],"properties":{"email":{"type":"string","format":"email"},"source":{"type":"string","description":"Free-form attribution tag"}}}}}},"responses":{"200":{"description":"Subscribed"},"400":{"description":"Invalid email"}}}},"/claim":{"post":{"summary":"Claim an open territory on the Symbiosis Atlas. Submission is reviewed by an admin; once approved, the entity appears on the live atlas at /ecosystem.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["name","email","project_name","description","gap_id"],"properties":{"name":{"type":"string","maxLength":120,"description":"Submitter's name"},"email":{"type":"string","format":"email"},"org":{"type":"string","maxLength":200,"description":"Organisation (optional)"},"project_name":{"type":"string","maxLength":120},"project_url":{"type":"string","format":"uri"},"description":{"type":"string","minLength":20,"maxLength":2000},"gap_id":{"type":"string","description":"ID of the open gap from /atlas (e.g. gap-governance)"},"gap_name":{"type":"string"},"arm":{"type":"string","description":"Arm id (e.g. society)"},"domain":{"type":"string","description":"Domain id (e.g. governance-civic)"}}}}}},"responses":{"200":{"description":"Claim received; awaiting admin review"},"400":{"description":"Validation failed"},"429":{"description":"Rate limited"}}}}}}