/api/v1/mystery/billing/repayments packs:readPaginated history of your verified on-chain repayments, newest first. amount_usdc is what the chain says arrived at the repayment address; applied_usdc is how much of it has been consumed stamping usage rows repaid (amount − applied across all rows = your unapplied credit).
GET /api/v1/mystery/billing/repayments?limit=10 These inputs are shared across all docs pages — an id entered here carries over.
{
"success": true,
"data": {
"repayments": []
},
"pagination": {
"limit": 10,
"offset": 0,
"has_more": false
}
}curl -X GET 'https://service.rip.fun/api/v1/mystery/billing/repayments?limit=10' \ -H 'X-API-Key: rip_…'
| Field | Type | Required | Description |
|---|---|---|---|
limit / offset | query number | — | Pagination (default 50, max 100) |
data)| Field | Description |
|---|---|
repayments[].tx_hash / amount_usdc | The tx and the on-chain-verified USDC received |
repayments[].applied_usdc | Portion consumed settling usage rows (never exceeds the amount) |
repayments[].from_address / to_address / token_address / block_number | On-chain audit detail decoded from the transfer |