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

# Wallet Fees Paid

> Query fee-bearing executed fills for one wallet.

Use this when you want the fills where a specific wallet paid a nonzero trader fee.

Canonical endpoint reference: [Wallet Fees Paid](/data/wallets/fees-paid).

For the exact all-time total, use [Wallet Summary](/data/wallets/summary) with `include_accounting_summary=true` and read `accounting_summary.fees_paid.amount`.

## Query

```bash theme={null}
curl "https://api.polynode.dev/v3/wallets/0x63ce342161250d705dc0b16df89036c8e5f9ba9a/fees-paid?limit=1" \
  -H "x-api-key: $POLYNODE_API_KEY"
```

## Filters

| Parameter | Purpose                       |
| --------- | ----------------------------- |
| `after`   | Start timestamp, Unix seconds |
| `before`  | End timestamp, Unix seconds   |
| `order`   | `asc` or `desc`               |
| `limit`   | Page size, max 300            |
| `offset`  | Pagination offset             |

## Returned Data

The response includes a `fees` array with the same market-enriched fill fields as wallet trades, plus:

| Field                  | Meaning                                               |
| ---------------------- | ----------------------------------------------------- |
| `fee`                  | Fee in USD                                            |
| `fee_paid`             | Same value as `fee`, named for fee-specific summaries |
| `fee_paid_raw`         | Raw 6-decimal amount                                  |
| `page_total_fees_paid` | Sum for the returned page only                        |
| `fee_semantics`        | Reminder that this is trader-paid fill fees           |

<Note>
  `page_total_fees_paid` is page-scoped. Use `GET /v3/wallets/{address}?include_accounting_summary=true` when you need the all-time total.
</Note>
