Up and running in minutes.
Three steps: get an API key, make your first request, see a live response.
Create an account & API key
Head to the AnchorGrid console to sign up. Once you're in, navigate to API Keys and create a new key. Copy it immediately — the secret is shown only once.
Open ConsoleKeys are prefixed ag-prod- followed by 64 hex characters. The raw secret is returned once on creation — after that only a masked prefix is shown in the console.
Make your first request
Send your API key in the X-API-Key header. A good first call is listing your documents — it returns immediately with no required body.
See a live response
Paste your key below and hit Run. The request goes directly to api.anchorgrid.ai from your browser — nothing is stored here.
First-request reference
GET /v1/documents
Only documents with expires_at > now() are returned. Presigned download URLs are not included in the list — fetch a single document via GET /v1/documents/{id} to get one.
Next steps