Bot status
Whether the chat bot is switched on, the channel it lives in, and the identity it speaks as - the shared TipPageBot or the streamer’s linked custom bot. Any valid key.
GET
/botAuthorization
AuthorizationBearer token (tp_live_...) · headerrequiredA TipPage API key, created in Dashboard → Settings → Developer.
Responses
200Bot status.
botobjectShow propertiesHide properties
enabledbooleanThe dashboard's bot on/off switch.
channelstring | nullThe streamer's Twitch login.
identityobjectWho the bot's messages appear from.
Show propertiesHide properties
typestringAllowed:
defaultcustomloginstringdisplay_namestring401Missing 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/bot" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.tippage.com/v1/bot", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.tippage.com/v1/bot",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"bot": {
"enabled": true,
"channel": "somestreamer",
"identity": {
"type": "default",
"login": "tippagebot",
"display_name": "TipPageBot"
}
}
}{
"error": "string",
"code": "string"
}{
"error": "string"
}