Skip to content

Mint your API key

One key works across every app your email is linked to. Free while in beta.

  1. Sign in at rndtoo.com, organic-os.com, or useregen.com.
  2. Open Settings → Developer (Organic OS: Developer Portal).
  3. 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):

Terminal window
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

Terminal window
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 (or GET /v1/keys)
  • Revoke: alt keys revoke <id> (or DELETE /v1/keys/{id})

Raw keys are never stored or shown again; only a SHA-256 hash is kept.