For the complete documentation index, see llms.txt. This page is also available as Markdown.

Auth

Verify API Key

get

Validates your API key and returns the identity it authenticates as, along with your current rate limits. Use this to confirm your connection and credentials are working. This call does not count against your daily quota.

Authorizations
AuthorizationstringRequired

Bearer token for authentication

Responses
200

Successful Response

application/json

Confirms an API key is valid and echoes the identity it authenticates as.

client_idstringRequired

Your Untitled workspace identifier

userstring · nullableOptional

Email of the user this API key belongs to

scopesstring[]Optional

Scopes granted to this API key

agencystring · nullableOptional

Your agency name (omitted for workspaces that belong directly to Untitled)

get/auth/verify
GET /auth/verify HTTP/1.1
Host: api.getuntitled.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Successful Response

{
  "client_id": "text",
  "user": "text",
  "scopes": [
    "text"
  ],
  "rates": {
    "limit": 1,
    "remaining": 1,
    "resets_at": "2026-01-01T00:00:00.000Z"
  },
  "agency": "text"
}

Last updated

Was this helpful?