Automette docs

Authentication

All API requests authenticate with a team-scoped API key passed as a Bearer token.

Base URL

https://automette.com
Authorization: Bearer dg_your_api_key

Keys 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

StatusMeaning
401Missing or malformed Authorization header
401API key not recognized
404Resource 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"

On this page