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

# Listar Onramps

> GET /v2/onramps — lista todas as transações de onramp com filtros opcionais.

## Parâmetros de query

| Parâmetro       | Tipo    | Descrição                                                  |
| --------------- | ------- | ---------------------------------------------------------- |
| `limit`         | integer | Máximo de resultados por página (padrão: `20`, máx: `100`) |
| `offset`        | integer | Offset de paginação (padrão: `0`)                          |
| `pix_e2e`       | string  | Filtrar pelo ID end-to-end do PIX                          |
| `client_tax_id` | string  | Filtrar por CPF ou CNPJ do cliente                         |
| `wallet`        | string  | Filtrar por endereço de carteira de destino                |
| `date_from`     | string  | Filtro de data de início — `YYYY-MM-DD`                    |
| `date_to`       | string  | Filtro de data de fim — `YYYY-MM-DD`                       |

## Response `200 OK`

Cada item em `results` tem o mesmo formato do response de [Consultar Onramp](/pt/api-reference/onramps/get).

<RequestExample>
  ```bash theme={null}
  curl "https://checkout.noxpay.io/v2/onramps?limit=20&offset=0" \
    -H "api-key: <key>"
  ```

  ```python theme={null}
  import requests

  response = requests.get(
      "https://checkout.noxpay.io/v2/onramps",
      headers={"api-key": "<key>"},
      params={"limit": 20, "offset": 0},
  )
  print(response.json())
  ```

  ```javascript theme={null}
  const params = new URLSearchParams({ limit: 20, offset: 0 });
  const response = await fetch(
    `https://checkout.noxpay.io/v2/onramps?${params}`,
    { headers: { "api-key": "<key>" } }
  );
  const data = await response.json();
  ```
</RequestExample>

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