Payout Information
This endpoint retrieves the details of a specific payout using its track_id. After generating a payout request, you will receive a track_id, which can be used to obtain detailed information about the payout.
get
Path parameters
track_idstringRequired
Unique identifier for the payout session.
Header parameters
payout_api_keystringRequired
Your Payout API Key for authentication and authorization.
Content-TypestringRequiredDefault:
application/json
Responses
200
Successful operation
application/json
400
Bad request
application/json
get
import requests
import json
track_id = 'TRACK_ID'
url = f'https://api.oxapay.com/v1/payout/{track_id}'
headers = {
'payout_api_key': 'YOUR_PAYOUT_API_KEY',
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
result = response.json()
print(result)
{
"data": {
"track_id": "258298351",
"address": "1AmH3Qz2LooYa1YSyLhySuatwoRMsfznPJ",
"currency": "BTC",
"network": "Bitcoin Network",
"amount": 0.02,
"fee": 0.00001,
"status": "processing",
"tx_hash": "",
"description": "test",
"internal": false,
"memo": "test",
"date": 1736501470
},
"message": "Operation completed successfully!",
"error": {},
"status": 200,
"version": "1.0.0"
}
Last updated