GET
/
settlement
/
transactions
List Transactions
curl --request GET \
  --url https://api.paxos.com/v2/settlement/transactions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "d99a03ee-6b88-4362-89da-087c2c8cd4a7",
    "ref_id": "d840cf31-352f-4190-a476-7522bf3eafda",
    "settlement_window_start": "2023-08-25T14:25:41.648486573Z",
    "settlement_window_end": "2023-08-25T14:25:41.648486953Z",
    "source_profile_id": "4fd025ab-f29f-47e6-a02e-df90a61c7ec9",
    "target_profile_id": "47db6271-50d6-4934-8c81-c42d87bfb390",
    "legs": [
      {
        "id": "ace21517-447e-4764-8733-765cb12a7fab",
        "direction": "DELIVER",
        "asset": "BTC",
        "amount": "100"
      }
    ],
    "status": "PENDING",
    "created_at": "2023-08-25T14:25:41.648489333Z",
    "updated_at": "2023-08-25T14:25:41.648489493Z"
  },
  {
    "id": "738b465a-7bea-42cf-be8d-63572f5745e7",
    "ref_id": "8f1dcf84-56e7-4e84-80aa-f01ef2eb1ab0",
    "settlement_window_start": "2023-08-26T00:25:41.648486573Z",
    "settlement_window_end": "2023-08-29T19:25:41.648486953Z",
    "source_profile_id": "4fd025ab-f29f-47e6-a02e-df90a61c7ec9",
    "target_profile_id": "47db6271-50d6-4934-8c81-c42d87bfb390",
    "legs": [
      {
        "id": "ace21517-447e-4764-8733-765cb12a7fab",
        "direction": "RECEIVE",
        "asset": "ETH",
        "amount": "39.231"
      }
    ],
    "status": "PENDING",
    "created_at": "2023-08-24T18:29:41.648489333Z",
    "updated_at": "2023-08-24T18:29:41.648489493Z"
  }
]

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Query Parameters

statuses
enum<string>[]

Transaction statuses to filter on

  • PENDING: Initial state of a settlement transaction upon creation.
  • SETTLED: Indicates all obligations belong to the settlement transaction have been enacted.
  • EXPIRED: Indicates the settlement transaction is no longer eligible for settlement.
  • CANCELLED: Indicates the settlement transaction was cancelled by the source profile.
  • AFFIRMED: Indicates the settlement transaction will be eligible for settlement once within the window.
source_profile_id
string

The profile_id of the entity on the submitting side of the transaction.

target_profile_id
string

The profile_id of the entity on the receiving side of the transaction.

limit
integer

Number of results to return. Defaults to 100 if no limit is provided.

page_cursor
string

Cursor for getting the next page of results.

Response

200
application/json

A successful response.

The response is of type object.