Quickstart
Anonymous workspace → first API call → claim when you’re ready.
UI preview: the mint endpoint ships next. Copy below shows the intended flow.
Returns a store id, API key, and claim ID. Save the claim ID — you’ll need it to keep the workspace.
curl -X POST https://api.recircleos.com/v1/anonymous \
-H "Content-Type: application/json"
{
"store_id": "sto_tmp_…",
"api_key": "rk_live_…",
"claim_id": "claim_…",
"expires_at": "…"
}Same shape as a claimed store. Money in cents, cursor lists, bearer auth.
curl https://api.recircleos.com/v1/items \
-H "Authorization: Bearer rk_live_…"
{
"data": [],
"next_cursor": null
}Sign up (or log in), then attach the claim ID. The anonymous workspace becomes your account — keys keep working.
curl -X POST https://api.recircleos.com/v1/claim \
-H "Authorization: Bearer <session>" \
-H "Content-Type: application/json" \
-d '{ "claim_id": "claim_…" }'Store your claim ID like a receipt. Anyone with it can claim the workspace — treat it like a secret.
Anonymous keys are for evaluation. When you hit the cap, claim and sign up — so serious agent usage moves to a real account.
You don’t need keys to run a floor — sign up and sell.