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
/meAuthorization
AuthorizationBearer token (tp_live_...) · headerrequiredA TipPage API key, created in Dashboard → Settings → Developer.
Responses
200Key and tenant identity.
tenantobjectShow propertiesHide properties
idstringnamestringkeyobjectShow propertiesHide properties
idstringnamestringscopesstring[]401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstringRequest
curl -X GET "https://api.tippage.com/v1/me" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.tippage.com/v1/me", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.tippage.com/v1/me",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"tenant": {
"id": "t_a7f3b9c2",
"name": "CallumFromTheCorner"
},
"key": {
"id": "ak_1f2e3d4c5b6a",
"name": "Discord bot",
"scopes": [
"tts:read",
"tts:control"
]
}
}{
"error": "string",
"code": "string"
}{
"error": "string"
}