Payout History
This endpoint retrieves a list of payout transactions associated with your account, based on your Payout API Key. You can filter the results by various criteria, including time range, status, amount, currency, network, type (internal or external), and more. Additionally, pagination allows you to retrieve the results in smaller, manageable sets.
GET
https://api.oxapay.com/v1/payout
Authentication
You must include the Payout API Key in the request header to authenticate your access to the API.
payout_api_key*
string
Your Payout API Key for authentication and authorization.
Request Params
status
string
Filter payouts based on their status (processing, complete, rejected, etc.).
type
string
Filter payouts based on type (internal or external).
currency
string
network
string
from_amount
decimal
Specify the minimum payout amount for filtering.
to_amount
decimal
Specify the maximum payout amount for filtering.
from_date
integer
The start of the date window to query for payouts in unix format
to_date
integer
The start of the date window to query for payouts in unix format
sort_by
string
Sort the received list by a parameter. Set to 'create_date' by default. Possible values: 'create_date', 'pay_date', 'amount' [default 'create_date'].
sort_type
string
Display the list in ascending or descending order. Possible values: 'asc', 'desc' [default 'desc'].
size
integer
Number of records to be displayed on one page. Possible values: from 1 to 200 - default 10.
page
integer
The page number of the results you want to retrieve. Possible values: from 1 to the total number of pages - default 1.
API Request Sample Codes
These example code snippets demonstrate how to request the "Payout History" endpoint using different programming languages. You can customize the data parameters according to your specific requirements.
API Response Example
The response example above is provided to help you understand the format and structure of the response. If you have any further questions or need assistance, please feel free to contact to your account manager.
Last updated