Skip to content
TipPage Docs
Esc
navigateopen⌘Jpreview

Played media history

Media that finished playing, most recent first, cursor-paginated the same way as /tts/history. Requires media:read.

GET/media/history
Authorization
AuthorizationBearer token (tp_live_...) · headerrequired
A TipPage API key, created in Dashboard → Settings → Developer.
Query parameters
limitinteger
min 1 · max 100 · default: 25
beforestring
Cursor - an `order_id` from a previous page (`next_cursor`). Returns rows strictly older than it.
Responses
200One page of history.
mediaHistoryMediaItem[]
Show properties
Array of HistoryMediaItem
order_idstring
donor_namestring
media_urlstring<uri>
media_start_timeinteger
video_titlestring | null
video_thumbnailstring<uri> | null
video_durationinteger
platformstring
requested_viastring
is_replayboolean
queued_atstring<date-time>
played_atstring<date-time>
has_moreboolean
next_cursorstring | null
400Unknown cursor.
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/media/history" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "media": [
    {
      "order_id": "string",
      "donor_name": "string",
      "media_url": "http://example.com",
      "media_start_time": 0,
      "video_title": "string",
      "video_thumbnail": "http://example.com",
      "video_duration": 0,
      "platform": "string",
      "requested_via": "string",
      "is_replay": true,
      "queued_at": "2019-08-24T14:15:22Z",
      "played_at": "2019-08-24T14:15:22Z"
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}