Transactions
Blockchain transactions
The Transaction Object
id
Number
Unique identifier for the object
amount
Number
Actually received/paid amount
blockchainFee
Number
Blockchain miners fee
address
String
Blockchain address
txnHash
String
Transaction hash
tag
String
Destination tags are unique identification codes used by cryptocurrencies to identify the receiver of a transaction
status
String
The status of the payment
createdAt
Date
Time at which the object was created
Lists all Transactions
GET
/api/v2/transactions
Returns a list of previously created Transactions. The Transactions are returned in sorted order, with the most recent transaction 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 Transaction by id
GET
/api/v2/transactions/{id}
Retrieves the details of a Transaction that has previously been created. Supply the id and the API will return the corresponding Transaction information.
Path Parameters
id*
Number
Unique identifier for the object
Last updated