> ## 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

> GET /v1/ramp/summary — Get aggregate volume and fee statistics

<Note>
  **Endpoint:** `GET https://api.rebelfi.io/v1/ramp/summary`
</Note>

Get aggregate volume and fee statistics for ramp operations over a given period.

### Query Parameters

| Field       | Type     | Required | Description                  |
| ----------- | -------- | -------- | ---------------------------- |
| `date_from` | `string` | No       | Start date filter (ISO 8601) |
| `date_to`   | `string` | No       | End date filter (ISO 8601)   |

### Example Request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://api.rebelfi.io/v1/ramp/summary?date_from=2026-03-01T00:00:00Z&date_to=2026-03-31T23:59:59Z" \
    -H "x-api-key: your_api_key"
  ```

  ```typescript SDK theme={null}
  const summary = await client.ramp.getSummary({
    dateFrom: '2026-03-01',
    dateTo: '2026-03-31'
  });
  ```
</CodeGroup>

### Example Response

```json theme={null}
{
  "total_volume_usd": 450000,
  "total_fees_usd": 1125,
  "total_delivered": 448875,
  "active_ramp_recipients": 12,
  "transaction_count": 28,
  "period_breakdown": [
    {
      "date": "2026-03-15",
      "volume_usd": 50000,
      "transactions": 3
    },
    {
      "date": "2026-03-16",
      "volume_usd": 75000,
      "transactions": 5
    }
  ]
}
```

### Response Fields

| Field                             | Type     | Description                        |
| --------------------------------- | -------- | ---------------------------------- |
| `total_volume_usd`                | `number` | Total USD volume in the period     |
| `total_fees_usd`                  | `number` | Total fees collected               |
| `total_delivered`                 | `number` | Total amount delivered after fees  |
| `active_ramp_recipients`          | `number` | Number of active recipients        |
| `transaction_count`               | `number` | Total number of transactions       |
| `period_breakdown`                | `array`  | Daily breakdown of activity        |
| `period_breakdown[].date`         | `string` | Date (YYYY-MM-DD)                  |
| `period_breakdown[].volume_usd`   | `number` | USD volume for the day             |
| `period_breakdown[].transactions` | `number` | Number of transactions for the day |
