Authentication
All API requests authenticate with a team-scoped API key passed as a Bearer token.
Base URL
https://automette.comHeader
Authorization: Bearer dg_your_api_keyKeys are prefixed with dg_. Each key is scoped to a single team — the team it was created under. Renders, templates, and webhooks made with a key are visible only to members of that team.
Creating a key
Create and manage keys in the dashboard at Settings → API Keys. The full secret is shown only once at creation time — copy it immediately and store it in your secret manager.
Error responses
| Status | Meaning |
|---|---|
401 | Missing or malformed Authorization header |
401 | API key not recognized |
404 | Resource does not exist — or it belongs to a different team. Cross-team access is indistinguishable from a missing resource by design. |
Example
curl https://automette.com/api/v1/templates \
-H "Authorization: Bearer dg_your_api_key"