Get purchases
To retrieve a list of purchases, merchants must use the same API key and signature authentication used when creating purchases. You can optionally provide query parameters such as page, pageSize, search, searchProperties, and sort to filter, search, and order the results. The returned list contains internal purchase IDs, which can be used to reference individual purchases in subsequent API calls.
Request parameters
Responses
{
"data": [
{
"id": "example",
"externalOrderId": "example",
"createdAt": "1971-04-26T12:26:06Z",
"fiatCurrency": "example",
"totalPaidAmount": 87,
"status": "Pending",
"lastUsedPaymentMethodName": "example",
"userCreditCardNumber": "example",
"updatedAt": "1971-04-26T12:26:06Z",
"paymentCompletionDate": "1971-04-26T12:26:06Z",
"customerEmail": "email@example.com",
"fullPrice": 87,
"feeAmount": 87,
"fiatSettlementAmount": 87,
"merchantCustomData": "example"
}
],
"pagination": {
"totalPages": 96,
"totalItems": 96,
"currentPage": 96
}
}
08 January 2026