Skip to content
TipPage Docs
Esc
navigateopen⌘Jpreview

Who am I

Returns the streamer this key belongs to and the key’s own metadata. The first call to make when wiring up an integration.

GET/me
Authorization
AuthorizationBearer token (tp_live_...) · headerrequired
A TipPage API key, created in Dashboard → Settings → Developer.
Responses
200Key and tenant identity.
tenantobject
Show properties
idstring
namestring
keyobject
Show properties
idstring
namestring
scopesstring[]
401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstring
Request
curl -X GET "https://api.tippage.com/v1/me" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "tenant": {
    "id": "t_a7f3b9c2",
    "name": "CallumFromTheCorner"
  },
  "key": {
    "id": "ak_1f2e3d4c5b6a",
    "name": "Discord bot",
    "scopes": [
      "tts:read",
      "tts:control"
    ]
  }
}