GET
/
v1
/
public
/
token-info
Inspect the API token
curl --request GET \
  --url https://api.talkzilla.app/v1/public/token-info \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "tokenId": "<string>",
    "label": "<string>",
    "scopes": [
      "<string>"
    ],
    "workspaceId": "<string>",
    "organizationId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Tenant-managed API tokens minted under Settings → Developer API. Scopes are api.read for GETs and api.write for mutating calls.

Response

Token introspection returned.

data
object