Preview Documentation — This integration is in final testing. API shapes are stable; endpoints will be live shortly. Contact your RebelFi rep if you have questions before go-live.
Get Summary
Returns aggregate volume, fee, and recipient statistics. Useful for dashboard overview pages and reporting.
Query Parameters
Start date (ISO 8601). Defaults to beginning of current month.
End date (ISO 8601). Defaults to now.
curl "https://api.rebelfi.io/v1/ramp/summary?date_from=2026-03-01&date_to=2026-03-31" \
-H "x-api-key: your_api_key"
Response
{
"total_volume_usd" : 1200000 ,
"total_fees_usd" : 2400 ,
"total_usdc_delivered" : 1197600 ,
"active_recipients" : 12 ,
"transaction_count" : 156 ,
"period_breakdown" : [
{ "date" : "2026-03-01" , "volume_usd" : 45000 , "transactions" : 6 },
{ "date" : "2026-03-02" , "volume_usd" : 62000 , "transactions" : 8 }
]
}
Total USD deposited across all recipients in the date range
Total fees collected in the date range
Total stablecoins (USDC/USDT) delivered to your wallet in the date range
Number of recipients with KYB approved
Number of completed transactions in the date range
Daily breakdown of volume and transaction counts
Show period_breakdown item fields
Date in YYYY-MM-DD format
Total USD volume for that day
Number of completed transactions for that day