> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rebelfi.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Summary

> Volume and fee summary for your on-ramp activity

<Warning>
  **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.
</Warning>

## Get Summary

Returns aggregate volume, fee, and recipient statistics. Useful for dashboard overview pages and reporting.

```
GET /v1/ramp/summary
```

### Query Parameters

<ParamField query="date_from" type="string">
  Start date (ISO 8601). Defaults to beginning of current month.
</ParamField>

<ParamField query="date_to" type="string">
  End date (ISO 8601). Defaults to now.
</ParamField>

```bash theme={null}
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

```json theme={null}
{
  "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 }
  ]
}
```

<ResponseField name="total_volume_usd" type="number">
  Total USD deposited across all recipients in the date range
</ResponseField>

<ResponseField name="total_fees_usd" type="number">
  Total fees collected in the date range
</ResponseField>

<ResponseField name="total_usdc_delivered" type="number">
  Total stablecoins (USDC/USDT) delivered to your wallet in the date range
</ResponseField>

<ResponseField name="active_recipients" type="number">
  Number of recipients with KYB approved
</ResponseField>

<ResponseField name="transaction_count" type="number">
  Number of completed transactions in the date range
</ResponseField>

<ResponseField name="period_breakdown" type="array">
  Daily breakdown of volume and transaction counts
</ResponseField>

<Expandable title="period_breakdown item fields">
  <ResponseField name="date" type="string">
    Date in `YYYY-MM-DD` format
  </ResponseField>

  <ResponseField name="volume_usd" type="number">
    Total USD volume for that day
  </ResponseField>

  <ResponseField name="transactions" type="number">
    Number of completed transactions for that day
  </ResponseField>
</Expandable>
