Skip to content
TipPage Docs
Esc
navigateopen⌘Jpreview

List timers

All timers, enabled or not. Requires timers:manage.

GET/timers
Authorization
AuthorizationBearer token (tp_live_...) · headerrequired
A TipPage API key, created in Dashboard → Settings → Developer.
Responses
200All timers for this streamer.
timersChatTimer[]
Show properties
Array of ChatTimer
idstring
namestring
Label shown in the dashboard - viewers never see it.
messagestring
What the bot posts. Same template variables as custom commands minus the argument ones.
interval_minutesinteger
min 1 · max 1440
interval_max_minutesinteger | null
`null` = fixed cadence. Set = a fresh random interval in [`interval_minutes`, `interval_max_minutes`] is rolled after every post.
min 1 · max 1440
min_chat_linesinteger
The timer waits until this many chat messages have been sent since its last post. 0 = no requirement. A due timer that hasn't met the bar posts as soon as chat catches up - it never skips a cycle.
min 0 · max 1000
live_onlyboolean
Only post while the streamer is live.
enabledboolean
created_atstring<date-time>
updated_atstring<date-time>
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`).
403The key lacks the required scope (`missing_scope`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
required_scopestring
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstring
Request
curl -X GET "https://api.tippage.com/v1/timers" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "timers": [
    {
      "id": "tmr_1a2b3c4d5e6f7a8b",
      "name": "string",
      "message": "string",
      "interval_minutes": 1,
      "interval_max_minutes": 1,
      "min_chat_lines": 1000,
      "live_only": true,
      "enabled": true,
      "created_at": "2019-08-24T14:15:22Z",
      "updated_at": "2019-08-24T14:15:22Z"
    }
  ]
}