Skip to content
TipPage Docs
Esc
navigateopen⌘Jpreview

Top supporters

The top 10 supporters by summed tip amount - the same data as the public leaderboard page. Any valid key.

GET/leaderboard
Authorization
AuthorizationBearer token (tp_live_...) · headerrequired
A TipPage API key, created in Dashboard → Settings → Developer.
Query parameters
daysstring
Time window. Omit (or pass `all`) for all-time.
Allowed:1730all
Responses
200Ranked supporters, highest total first.
daysinteger | null
The applied window (null = all-time).
leadersobject[]
Show properties
Array of object
namestring
totalnumber
400Invalid days value.
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
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/leaderboard" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "days": 0,
  "leaders": [
    {
      "name": "string",
      "total": 0
    }
  ]
}