List redemptions

GET /api/v1/mystery/redemptions packs:read

History of every redemption across your end-users (same shape as the per-card status endpoint). Optional ?status= filter.

Try it GET /api/v1/mystery/redemptions?limit=10

These inputs are shared across all docs pages — an id entered here carries over.

response
200 41ms preloaded server-side with the default context
object · 3 keys
{
  "success": true,
  "data": {
    "redemptions": []
  },
  "pagination": {
    "limit": 10,
    "offset": 0,
    "has_more": false
  }
}
curl (tracks the inputs above)
curl -X GET 'https://service.rip.fun/api/v1/mystery/redemptions?limit=10' \
  -H 'X-API-Key: rip_…'

Request fields

FieldTypeRequiredDescription
statusquery stringPREPARED | BURN_SUBMITTED | IN_FULFILLMENT | COMPLETED | FAILED | CANCELLED | EXPIRED
limit / offsetquery intPagination

Errors

StatusCodeWhen
400invalid_status?status= is not a lifecycle status

See Errors for the response envelope and the full code list.