> For the complete documentation index, see [llms.txt](https://rwaperp-1.gitbook.io/rwaperp-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rwaperp-1.gitbook.io/rwaperp-docs/rwa-perp-b2b-api/rest-api-reference/volume-statistics/get-v1-volume-broker-daily.md).

# get v1 volume broker daily

`GET /v1/volume/broker/daily`

**Authentication:** RWA

{% hint style="warning" %}
**Limit:** 10 requests per 60 seconds
{% endhint %}

Get the daily historical breakdown of the user trading volume on specified builder.

The provided `start_date`/`end_date` has to be within a 90-day range.

Updated hourly.

## Parameters

| Name          | Location | Type   | Required | Description                                                                                                                                                                                                                                                                          | Example |
| ------------- | -------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------- |
| `start_date`  | query    | string | Yes      | Format YYYY-MM-DD                                                                                                                                                                                                                                                                    | —       |
| `end_date`    | query    | string | Yes      | Format YYYY-MM-DD                                                                                                                                                                                                                                                                    | —       |
| `page`        | query    | number | No       | start from 1                                                                                                                                                                                                                                                                         | —       |
| `size`        | query    | number | No       | —                                                                                                                                                                                                                                                                                    | —       |
| `address`     | query    | string | No       | —                                                                                                                                                                                                                                                                                    | —       |
| `order_tag`   | query    | string | No       | Filter by the full stored order tag, including a current-format `enum:<owning_broker_id>:<enum_id>` tag.                                                                                                                                                                             | —       |
| `aggregateBy` | query    | string | No       | Either by `DATE` or by `ACCOUNT`                                                                                                                                                                                                                                                     | —       |
| `sort`        | query    | string | No       | Allow sort by `ascending_broker_fee` `descending_broker_fee` `ascending_perp_maker_volume` `descending_perp_maker_volume` `ascending_perp_taker_volume` `descending_perp_taker_volume` `ascending_perp_volume` `descending_perp_volume` `ascending_total_fee` `descending_total_fee` | —       |

## Responses

### HTTP 200

OK

| Field                           | Type    | Required | Description                                                                   |
| ------------------------------- | ------- | -------- | ----------------------------------------------------------------------------- |
| `success`                       | boolean | Yes      | Indicates whether the request was successful. Example: `True`                 |
| `timestamp`                     | integer | No       | Server timestamp in milliseconds. Example: `1702989203989`                    |
| `data`                          | object  | Yes      | —                                                                             |
| `data.snapshot_time`            | number  | No       | Example: `1702989203989`                                                      |
| `data.rows`                     | array   | Yes      | Daily account statistic snapshots for the requested date range.               |
| `data.rows[].account_id`        | string  | No       | Example: `0x58220761ade872c94f85e62f1b24a74eec792aaa3677b6201071fd05c1698e89` |
| `data.rows[].date`              | string  | No       | Example: `2023-09-14`                                                         |
| `data.rows[].perp_volume`       | number  | No       | Example: `451580.9523`                                                        |
| `data.rows[].perp_maker_volume` | number  | No       | Example: `123.456`                                                            |
| `data.rows[].perp_taker_volum`  | number  | No       | Example: `123.456`                                                            |
| `data.rows[].total_fee`         | number  | No       | Example: `123.456`                                                            |
| `data.rows[].broker_fee`        | number  | No       | Example: `123.456`                                                            |
| `data.rows[].address`           | string  | No       | Example: `0x0000000000`                                                       |
| `data.rows[].realized_pnl`      | number  | No       | Example: `111.0`                                                              |
| `data.meta`                     | object  | No       | —                                                                             |
| `data.meta.records_per_page`    | integer | No       | Example: `25`                                                                 |
| `data.meta.current_page`        | integer | No       | start from 1 Example: `1`                                                     |
| `data.meta.total`               | integer | No       | Example: `50`                                                                 |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://rwaperp-1.gitbook.io/rwaperp-docs/rwa-perp-b2b-api/rest-api-reference/volume-statistics/get-v1-volume-broker-daily.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
