v1

latestOpenAPI 3.1.02026-07-264915.3 KB

Transactions

This endpoint is deprecated, please see the new endpoint: https://integrations.simplex.com/reference/payments

Retrieve transactions data per a specified time range. The transactions are listed in sorted, descending temporal order, with the latest transactions listed first. Supports Paging.

get/

Query parameters

starting_atstring date-time

Include only transactions created on or after this date. Should be unix timestamp, example: 1658669633

ending_atstring date-time

Include only transactions created on or before this date. Should be unix timestamp, example: 1658669633

continue_fromstring

An opaque string that references the next page of the query results

limitstring required

The maximum amount of transactions to return in the response.

Headers

x-api-keystring required

Response

200

has_more_pagesboolean
request_idstring
next_page_cursorstring

Example response

{
  "has_more_pages": true,
  "data": [
    {
      "ref_id": "demo-partner-ref-id",
      "crypto_currency": "BTC",
      "status_name": "approved",
      "amount_usd": 1000.27,
      "created_at": 1537078623.305,
      "crypto_fee_currency": "BTC",
      "payment_id": "85212121-93e3-4907-8530-37aa08446bf3",
      "fiat_total_amount": 1000.27,
      "original_http_ref_url": "http://demo-partner.com",
      "currency": "USD",
      "amount_crypto": 0.235,
      "amount_fee_in_crypto": 0.00062572,
      "order_id": "85444121-93e3-4917-8530-37aa08446bf3"
    }
  ],
  "request_id": "85213321-93e3-4907-8530-37aa08446bf3",
  "next_page_cursor": "046b6c7f-0b8a-43b9-b35d-6489e6daee91"
}
All 4 operations