Skip to main content
GET
/
v0
/
me
Get current token info
curl --request GET \
  --url https://api.getdecimal.ai/v0/me \
  --header 'Authorization: Bearer <token>'
{
  "token": {
    "name": "<string>",
    "prefix": "sk-de-abc1",
    "scopes": [
      "chat:read",
      "chat:write"
    ]
  },
  "organization": {
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API token with sk-de- prefix. Created in the Decimal dashboard under Settings → API Tokens.

Response

Token and organization info.

token
object
required
organization
object
required