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

# Get Weekly Volume

> Retrieve weekly swap volume data for HoudiniSwap

<Danger>
  Deprecation of the REST v1 swap endpoints begins on September 30, 2026. Please migrate to the Partner API v2. Dashboard and authentication endpoints remain on v1 GraphQL and are not affected. [Read the migration guide](https://docs.houdiniswap.com/migration/v1-to-v2)
</Danger>

# Get Weekly Volume

## Endpoint

```text theme={null}
GET /weeklyVolume
```

Retrieves weekly swap volume data for HoudiniSwap, organized by week and year.

## Parameters

None required.

## Example Request

```text theme={null}
GET /weeklyVolume
```

## Example Response

```json theme={null}
[
  {
    "count": 0,
    "anonymous": 0,
    "volume": 0,
    "week": 0,
    "year": 0,
    "commission": 0
  }
]
```

## Response Fields

| Field        | Type   | Description                                           |
| ------------ | ------ | ----------------------------------------------------- |
| `count`      | number | Total transactions for the week                       |
| `anonymous`  | number | Number of anonymous transactions (out of total count) |
| `volume`     | number | Total transaction volume in USD                       |
| `week`       | number | Week number of the year                               |
| `year`       | number | Year                                                  |
| `commission` | number | Commission earned in USD                              |
