Skip to content

GET /me

Returns the account and scope context of the calling token. Useful as a connectivity check and to discover whether the token is site-locked.

GET /api/v1/me
Terminal window
curl https://app.theaccessibility.company/api/v1/me \
-H "Authorization: Bearer tac_mcp_..."
{
"data": {
"tokenName": "CI bot",
"scopes": ["read"],
"siteId": null,
"account": {
"id": "acct_8f2k1",
"name": "Acme Corp",
"slug": "acme-corp"
}
}
}
FieldTypeDescription
tokenNamestringThe name given to the token at creation.
scopesstring[]["read"] or ["read", "write"].
siteIdstring | nullNon-null when the token is locked to one site.
account.idstringAccount id.
account.namestring | nullAccount display name.
account.slugstring | nullAccount slug.