List redemptions

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

Paginated history of every redemption across your end-users (same row shape as the per-purchase status endpoint). Optional ?status= filter, validated against the lifecycle statuses.

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

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

response
401 23ms preloaded server-side with the default context
object · 3 keys
{
  "success": false,
  "message": "Invalid API key",
  "error": "API key not found or inactive"
}
curl (tracks the inputs above)
curl -X GET 'https://staging-service.rip.fun/api/v1/mystery/redemptions?limit=10' \
  -H 'X-API-Key: rip_v1_…'

Request fields

FieldTypeRequiredDescription
statusquery stringAWAITING_KYC | PREPARED | 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.