Base URL:
https://api.anonage.io (production, coming soon) or https://dev1api.anonage.io
(development). Examples below use the production URL.1. Get an API key
In the Console → API Keys, create a key. You’ll see two secrets once:- API key (
anonage_sk_…) — sent asX-API-Keyfrom your server. - Signing secret (
whsec_…) — used to verify callbacks.
2. Open a session (server-side)
Never put your API key in the browser. Create the session from your backend:3. Show the user a QR or tap-link
Encode the opaque reference. On mobile, a tap-link opens the AnonAge app; on desktop, render a QR the user scans.Browser
4. Receive the signed result
AnonAge POSTs yourcallback_url when the user approves. Verify the signature, then act:
Node (Express)