Lists all payments with pagination
cURL
curl --request GET \ --url https://api.example.com/v1/payments
{ "data": [ { "paymentId": "<string>", "object": "payment", "amount": "<string>", "assetCode": "<string>", "method": "CRYPTO", "status": "COMPLETED", "metadata": {}, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "provider": "<string>", "providerPaymentId": "<string>", "description": "<string>", "initiatedAt": "2023-11-07T05:31:56Z", "processedAt": "2023-11-07T05:31:56Z", "completedAt": "2023-11-07T05:31:56Z" } ], "page_size": 123, "next_cursor": "<string>" }
The cursor pointing to the start of the next page (omit for first request)
The number of items to return per page (default: 25, max: 100)
The request has succeeded.
Container model for paginated responses
The array of data items
Show child attributes
The number of items returned in this response
The cursor pointing to the start of the next page (null if no more pages)