We collect minimal analytics to understand how the site is used. If you decline, we do not load analytics.
Overview / Authentication

Authentication

Every request to the AnchorGrid API must include your API key in the X-API-Key header.

Header

X-API-Key

Include the header on every request. The value is the full key secret you copied from the console — it starts with ag-prod- followed by 64 hex characters.

GET https://api.anchorgrid.ai/v1/documents
X-API-Key: ag-prod-<64 hex chars>
Header name
X-API-Key
Format
ag-prod- + 64 hex characters
Storage
Raw key is never stored — only a SHA-256 hash.
Missing or invalid
401 — response is intentionally generic.

The key secret is shown once at creation time. After that, only a masked prefix is visible in the console. Store it securely before closing the dialog.

Getting started

Get an API key

Sign in to the AnchorGrid console, navigate to API Keys, and create a new key. Copy the secret immediately.

Open Console

Access control

Tiers

Each API key carries a tier that governs rate limits, upload size, job retention, credits, and webhook delivery.

free
5 req / min
No webhooks
developer
60 req / min
Webhooks ✓
pro
120 req / min
Webhooks ✓
enterprise
300 req / min
Webhooks ✓

Rate-limited responses return 429 with X-RateLimit-* headers and a retry_after_seconds field in the body.

Next steps