Skip to main content
The Verbose API authenticates with a bearer key. Each key is scoped to one workspace and grants full access to it.

Create a key

  1. In the dashboard, open Settings → API keys.
  2. Create a key and copy it immediately — it’s shown once and stored only as a hash.
  3. Keep it server-side (a secrets manager or environment variable). Never ship it in client-side code.
Keys look like as_live_…. Revoke a key anytime in Settings; revocation is immediate.

Authenticate a request

Send the key as a bearer token in the Authorization header:
A valid key returns the workspace it belongs to:
An invalid or missing key returns 401:
Use GET /v1/me as a health check to confirm a key works before wiring it into your integration.