Static Address List
Use this endpoint to retrieve a list of static addresses associated with a specific business. The list can be filtered by various criteria, such as trackId, address, network, email and orderId. Pagination is also available to fetch the results in smaller sets.
Filter addresses by a specific ID.
Filter addresses by the expected blockchain network for the specified crypto currency.
Filter addresses by the expected currency.
Filter static addresses by the expected address. It’s better to filter static addresses.
Filter the addresses that had transactions.
Filter addresses by a unique order ID for reference.
Filter addresses by the email.
The page number of the results you want to retrieve.
1Number of records to display per page.
1Your Merchant API Key for authentication and authorization.
application/jsonSuccessful operation
Bad request
import requests
import json
url = 'https://api.oxapay.com/v1/payment/static-address'
headers = {
'merchant_api_key': 'YOUR_MERCHANT_API_KEY',
'Content-Type': 'application/json'
}
params = {
'size': 20,
'page': 1
}
response = requests.get(url, params=params , headers=headers)
result = response.json()
print(result){
"data": {
"list": [
{
"track_id": "133830568",
"address": "0x71E204659d18cf1477eecFBaC9a20d2cebE184b4",
"network": "Ethereum Network",
"callback_url": "https://example.com/callback",
"email": "[email protected]",
"order_id": "ORD-12345",
"description": "Order #12345",
"date": 1728032999
},
{
"track_id": "123435847",
"address": "TWYrqEVUpRer7sLLqshkF6HJnioL2VTJH3",
"network": "Tron Network",
"callback_url": "https://example.com/callback",
"email": "[email protected]",
"order_id": "ORD-12345",
"description": "Order #12345",
"date": 1728140762
}
],
"meta": {
"page": 1,
"last_page": 2,
"total": 4
}
},
"message": "Operation completed successfully!",
"error": {},
"status": 200,
"version": "1.0.0"
}Last updated