Payouts
Cryptocurrency Payouts
The Payout Object
id
Number
Unique identifier for the object.
label
String
Payout label
amount
Number
Amount
address
String
Blockchain address
tag
String
Tag, memo or note
fee
String
Fee: low, medium, high
feeAmount
Number
Fee amount
isFeeIncluded
Boolean
Is fee included into payout
walletId
Number
Unique identifier for the object
walletCurrency
String
Alphabetic currency code
trackingId
String
Client-provided identifier of the payment in the external system
status
String
The status of the payout
note
String
Payout Description
createdAt
Date
Time at which the object was created
Create a Payout
POST
/api/v1/payouts/create
Creates new Payout request
Headers
Accept*
applicaiton/json
Request Body
currency*
String
Payout currency
trackingId*
String
Client provided identifier of the payment in the external system
walletId*
String
Payout wallet id
label
String
Payout label
address*
String
Receiver blockchain address
tag
String
Address tag, memo or note
fee*
String
Low, medium or high
isFeeIncluded*
Boolean
Is fee included into payout amount
webhookUrl
String
Notifications url
Lists all payouts
GET
/api/v1/payouts
Returns a list of previously created Payouts. The Payouts are returned in sorted order, with the most recent payout appearing first. You can optionally provide parameters to filter out the results by time created.
Query Parameters
from
Date
Filter by created time. We use basic ISO 8601 format for mixed date-time: YYYY-MM-DDThh:mm:ss
to
Date
Filter by created time. We use basic ISO 8601 format for mixed date-time: YYYY-MM-DDThh:mm:ss
page
Number
Current page
Get Payout by id
GET
/api/v1/payout/{id}
Retrieves the details of a Payout that has previously been created. Supply the id and the API will return the corresponding Payout information.
Path Parameters
id*
Number
Unique identifier for the object
Last updated