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

# Get Weekly Volume

## Endpoint

```
GET /weeklyVolume
```

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

## Parameters

None required.

## Example Request

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