cURL
curl --request GET \ --url https://api.example.com/rewards/claims \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "<string>", "payout_group_id": "<string>", "claim_type": "CLAIM_ALL", "claim_schedule_id": "<string>", "onchain_status": "PENDING", "amount": "<string>", "tx_hash": "<string>", "addresses": [ "<string>" ], "error_message": "<string>", "blockchain": "<string>", "asset_type": "<string>", "submitted_at": "2023-11-07T05:31:56Z", "confirmed_at": "2023-11-07T05:31:56Z", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ], "next_page_cursor": "<string>" }
Returns a paginated list of claims with optional filtering
rewards:read_claims
The access token received from the authorization server in the OAuth 2.0 flow.
PENDING
SUBMITTED
CONFIRMED
FAILED
Start time filter (inclusive).
End time filter (inclusive).
A successful response.
Claims in this page of results.
Show child attributes
Token to retrieve the next page of results, or empty if there are no more results.
Was this page helpful?