curl https://checkout.noxpay.io/v2/withdrawal/NOXwdr001 \
-H "api-key: <key>"
import requests
response = requests.get(
"https://checkout.noxpay.io/v2/withdrawal/NOXwdr001",
headers={"api-key": "<key>"},
)
print(response.json())
const response = await fetch(
"https://checkout.noxpay.io/v2/withdrawal/NOXwdr001",
{ headers: { "api-key": "<key>" } }
);
const data = await response.json();
{
"version": "v2",
"end2end": "NOXwdr001",
"created_at": "2024-05-03T14:00:00Z",
"updated_at": "2024-05-03T14:05:00Z",
"process": "success_withdrawal.completed",
"status": { "en": "Success", "pt": "Sucesso", "es": "Éxito" },
"substatus": { "en": "Withdrawal Completed", "pt": "Saque Concluído", "es": "Retiro Completado" },
"message": { "en": "Withdrawal completed successfully", "pt": "Saque concluído com sucesso", "es": "Retiro completado con éxito" },
"error_message": { "en": "", "pt": "", "es": "" },
"attributes": {
"amount_discounted": 100.00,
"amount_received": 99.00,
"currency_received": "USDT (TRX)",
"currency_receive_code": "TRX_USDT_S2UZ",
"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"
}
}
Global Account
Get Withdrawal
GET /v2/withdrawal/ — retrieve a single withdrawal by its end2end ID.
curl https://checkout.noxpay.io/v2/withdrawal/NOXwdr001 \
-H "api-key: <key>"
import requests
response = requests.get(
"https://checkout.noxpay.io/v2/withdrawal/NOXwdr001",
headers={"api-key": "<key>"},
)
print(response.json())
const response = await fetch(
"https://checkout.noxpay.io/v2/withdrawal/NOXwdr001",
{ headers: { "api-key": "<key>" } }
);
const data = await response.json();
{
"version": "v2",
"end2end": "NOXwdr001",
"created_at": "2024-05-03T14:00:00Z",
"updated_at": "2024-05-03T14:05:00Z",
"process": "success_withdrawal.completed",
"status": { "en": "Success", "pt": "Sucesso", "es": "Éxito" },
"substatus": { "en": "Withdrawal Completed", "pt": "Saque Concluído", "es": "Retiro Completado" },
"message": { "en": "Withdrawal completed successfully", "pt": "Saque concluído com sucesso", "es": "Retiro completado con éxito" },
"error_message": { "en": "", "pt": "", "es": "" },
"attributes": {
"amount_discounted": 100.00,
"amount_received": 99.00,
"currency_received": "USDT (TRX)",
"currency_receive_code": "TRX_USDT_S2UZ",
"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"
}
}
A withdrawal moves funds from your Noxpay balance to a whitelisted wallet or PIX key.
If Response
An attribute with an empty value is omitted, so a missing key —
Path parameters
| Parameter | Description |
|---|---|
id | The end2end identifier (e.g. NOXwdr001), or the on-chain tx_hash of the withdrawal |
{id} does not match an end2end, it is retried against the transaction hash, so you can look a withdrawal up either way on the same route with no extra parameter.
Response 200 OK
Attributes
| Field | Type | Description |
|---|---|---|
amount_discounted | float | Amount debited from your balance for this withdrawal |
amount_received | float | Amount that lands at the destination, after the network fee is deducted |
currency_received | string | Asset display name (e.g. USDT (TRX)) |
currency_receive_code | string | Asset code (e.g. TRX_USDT_S2UZ) |
address | string | Destination blockchain address |
tx_hash | string | On-chain transaction hash |
explorer_url | string | Block explorer URL for the transaction |
network_fee | string | Blockchain network fee paid |
group_id | string | Whitelist group ID used for this withdrawal |
notes | string | Optional notes attached to the withdrawal |
tx_hash, explorer_url — means that step has not happened yet.
404 — withdrawal not found or does not belong to your account. The two cases are deliberately indistinguishable.
For all status / substatus values see Withdrawal statuses.
curl https://checkout.noxpay.io/v2/withdrawal/NOXwdr001 \
-H "api-key: <key>"
import requests
response = requests.get(
"https://checkout.noxpay.io/v2/withdrawal/NOXwdr001",
headers={"api-key": "<key>"},
)
print(response.json())
const response = await fetch(
"https://checkout.noxpay.io/v2/withdrawal/NOXwdr001",
{ headers: { "api-key": "<key>" } }
);
const data = await response.json();
{
"version": "v2",
"end2end": "NOXwdr001",
"created_at": "2024-05-03T14:00:00Z",
"updated_at": "2024-05-03T14:05:00Z",
"process": "success_withdrawal.completed",
"status": { "en": "Success", "pt": "Sucesso", "es": "Éxito" },
"substatus": { "en": "Withdrawal Completed", "pt": "Saque Concluído", "es": "Retiro Completado" },
"message": { "en": "Withdrawal completed successfully", "pt": "Saque concluído com sucesso", "es": "Retiro completado con éxito" },
"error_message": { "en": "", "pt": "", "es": "" },
"attributes": {
"amount_discounted": 100.00,
"amount_received": 99.00,
"currency_received": "USDT (TRX)",
"currency_receive_code": "TRX_USDT_S2UZ",
"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"
}
}

