Statistics
Retrieve Disbursement Statistics
Fetches metrics on a specific disbursement by id .
get/statistics/{id}
Path parameters
idstring required
ID of the Disbursement.
Response
Returns statistics for disbursement
Example response
{
"payment_counters": {
"draft": 1,
"ready": 2,
"pending": 3,
"paused": 1,
"success": 5,
"failed": 1,
"total": 14
},
"payment_amounts_by_asset": [
{
"asset_code": "USDC",
"payment_amounts": {
"draft": "100.00",
"ready": "200.00",
"pending": "300.00",
"paused": "100.00",
"success": "500.00",
"failed": "100.00",
"average": "100.00",
"total": "1400.00"
}
}
],
"receiver_wallets_counters": {
"draft": 1,
"ready": 1,
"registered": 1,
"flagged": 1,
"total": 4
},
"total_receivers": 100
}