Mint your API key
One key works across every app your email is linked to. Free while in beta.
From an app (recommended)
- Sign in at rndtoo.com, organic-os.com, or useregen.com.
- Open Settings → Developer (Organic OS: Developer Portal).
- Click Create platform key. Copy it immediately - it is shown exactly once.
Your key looks like alt_live_ followed by 64 hex characters. It carries read scopes for every app
your email has an account in, plus AI invocation with daily caps.
From the command line
If you already have a session token (advanced):
curl -X POST https://platform.altlaboratories.com/v1/keys \ -H "Authorization: Bearer <your app session access token>" \ -H "Content-Type: application/json" \ -d '{"name": "my-agent"}'Verify it works
curl https://platform.altlaboratories.com/v1/me \ -H "Authorization: Bearer alt_live_..."You get back your identity, linked apps, scopes, limits, and today’s usage.
Manage keys
- List:
alt keys list(orGET /v1/keys) - Revoke:
alt keys revoke <id>(orDELETE /v1/keys/{id})
Raw keys are never stored or shown again; only a SHA-256 hash is kept.