Skip to main content

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.

A withdrawal moves funds from your Noxpay balance to a whitelisted wallet or PIX key.

Get a single withdrawal

GET /v2/withdrawal/{id}
Authorization: Bearer <your-api-key>

Path parameters

ParameterDescription
idThe end2end identifier (e.g. NOXwdr001)

Response 200 OK

{
  "end2end": "NOXwdr001",
  "component": "success_withdrawl_dash",
  "state": "DONE",
  "template": "withdraw_dash_same_curr",
  "created_at": "2024-05-03T14:00:00Z",
  "updated_at": "2024-05-03T14:05:00Z",
  "status": { "en": "Success", "pt": "Sucesso" },
  "substatus": { "en": "Withdrawal Completed", "pt": "Saque Concluído" },
  "message": {
    "en": "Withdrawal completed successfully",
    "pt": "Saque concluído com sucesso"
  },
  "error_message": { "en": "", "pt": "" },
  "attributes": {
    "amount_discounted": 99.00,
    "amount_received": 100.00,
    "currency_received": "USDT TRC20",
    "currency_receive_code": "USDT",
    "address": "TXyZ...abc",
    "tx_hash": "0xabc123...",
    "explorer_url": "https://tronscan.org/#/transaction/0xabc123",
    "network_fee": "1.00",
    "group_id": "wl-group-id",
    "notes": "Monthly payout"
  }
}

Attributes

FieldTypeDescription
amount_discountedfloatAmount actually sent after deducting the network fee
amount_receivedfloatAmount originally requested
currency_receivedstringAsset display name (e.g. USDT TRC20)
currency_receive_codestringAsset code (e.g. USDT)
addressstringDestination blockchain address
tx_hashstringOn-chain transaction hash
explorer_urlstringBlock explorer URL for the transaction
network_feestringBlockchain network fee paid
group_idstringWhitelist group ID used for this withdrawal
notesstringOptional notes attached to the withdrawal
404 — withdrawal not found or does not belong to your account. For all status / substatus values see Withdrawal statuses.

List withdrawals

GET /v2/withdrawals
Authorization: Bearer <your-api-key>

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

{
  "version": "v2",
  "total": 3,
  "limit": 20,
  "offset": 0,
  "results": [ ]
}
Each item in results has the same shape as the single GET response.