Skip to main content
curl "https://checkout.noxpay.io/v2/withdrawals?limit=20&offset=0" \
  -H "Authorization: Bearer <your-api-key>"
{
  "version": "v2",
  "total": 3,
  "limit": 20,
  "offset": 0,
  "results": []
}

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.

Query parameters

ParameterTypeDescription
limitintegerMax results per page (default: 20, max: 100)
offsetintegerPagination offset (default: 0)
group_idstringFilter by whitelist group ID
addressstringFilter by destination address
receive_currency_codestringFilter by currency code (e.g. USDT, BRL)

Response 200 OK

Each item in results has the same shape as the Get Withdrawal response.
curl "https://checkout.noxpay.io/v2/withdrawals?limit=20&offset=0" \
  -H "Authorization: Bearer <your-api-key>"
{
  "version": "v2",
  "total": 3,
  "limit": 20,
  "offset": 0,
  "results": []
}