Skip to main content
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 merchant statistics. Useful for dashboard overview pages and reporting.
GET /v1/ramp/summary

Query Parameters

date_from
string
Start date (ISO 8601). Defaults to beginning of current month.
date_to
string
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_merchants": 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_volume_usd
number
Total USD deposited across all merchants in the date range
total_fees_usd
number
Total fees collected in the date range
total_usdc_delivered
number
Total USDC delivered to your wallet in the date range
active_merchants
number
Number of merchants with KYB approved
transaction_count
number
Number of completed transactions in the date range
period_breakdown
array
Daily breakdown of volume and transaction counts