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

# List Withdrawals

> GET /v2/naas/withdrawals — list all NaaS withdrawals for the sub-merchant.

## Query parameters

| Parameter               | Description                              |
| ----------------------- | ---------------------------------------- |
| `group_id`              | Filter by Fireblocks wallet group ID     |
| `address`               | Filter by destination address            |
| `receive_currency_code` | Filter by currency (e.g. `USDT_ETH`)     |
| `limit`                 | Maximum results per page (default: `20`) |
| `offset`                | Pagination offset (default: `0`)         |

## Response `200 OK`

Each item in `results` has the same shape as the [Get Withdrawal](/api-reference/naas/withdrawal-get) response.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://checkout.noxpay.io/v2/naas/withdrawals?limit=20&offset=0" \
    -H "api-key: <key>" \
    -H "X-Timestamp: 2026-05-27T14:30:00Z" \
    -H "X-Correlation-ID: a1b2c3d4-e5f6-4789-abcd-000000000001" \
    -H "X-Signature: <signed-headers-signature>"
  ```

  ```python Python theme={null}
  import requests

  headers = sign_get_headers(private_key, "a1b2c3d4-e5f6-4789-abcd-000000000001")
  headers["api-key"] = "<key>"
  response = requests.get(
      "https://checkout.noxpay.io/v2/naas/withdrawals",
      headers=headers,
      params={"limit": 20, "offset": 0},
  )
  print(response.json())
  ```

  ```javascript Node.js theme={null}
  const headers = signGETHeaders("a1b2c3d4-e5f6-4789-abcd-000000000001");
  headers["api-key"] = "<key>";
  const params = new URLSearchParams({ limit: 20, offset: 0 });
  const response = await fetch(`https://checkout.noxpay.io/v2/naas/withdrawals?${params}`, {
    method: "GET",
    headers,
  });
  const data = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "version": "v2",
    "total": 5,
    "limit": 20,
    "offset": 0,
    "results": []
  }
  ```
</ResponseExample>
