v1

latestOpenAPI 3.1.02026-08-0629140119.9 KB
Transactions

List Transactions

Retrieves a paginated list of transactions for the account. Supports cursor-based pagination and filtering by date range or search term.

get/v1/transactions

Query parameters

cursorstring nullable

Pagination cursor ("<unix_micros>:<transaction_id>"). Opaque token from a previous response's pagination metadata.

beforestring date-time nullable

Return transactions created before this instant (UTC, RFC 3339). Exclusive upper bound.

afterstring date-time nullable

Return transactions created after this instant (UTC, RFC 3339). Exclusive lower bound.

limitinteger nullable
search_termstring nullable

Response

Transactions retrieved successfully

next_cursorstring nullable

Cursor for the next page of results. Null when there are no more results.

Example response

{
  "transactions": [
    {
      "completed_at": "2026-05-28T14:30:00Z",
      "created_at": "2026-05-28T14:30:00Z",
      "details": {
        "value": {
          "due_date": "2026-06-01",
          "paid_at": "2026-05-28T14:30:00Z"
        }
      },
      "end_to_end_id": "E323070002024011012345612345678901234",
      "med": {
        "incoming_infraction": {
          "created_at": "2026-05-28T14:30:00Z",
          "deadline": "2026-05-28T14:30:00Z",
          "funds_recovery": {
            "closed_at": "2026-05-28T14:30:00Z",
            "external_created_at": "2026-05-28T14:30:00Z",
            "external_last_modified_at": "2026-05-28T14:30:00Z"
          },
          "original_transaction": {
            "created_at": "2026-05-28T14:30:00Z"
          }
        },
        "outgoing_dispute": {
          "cancellation_requested_at": "2026-05-28T14:30:00Z",
          "created_at": "2026-05-28T14:30:00Z",
          "deadline": "2026-05-28T14:30:00Z",
          "funds_recovery": {
            "closed_at": "2026-05-28T14:30:00Z",
            "external_created_at": "2026-05-28T14:30:00Z",
            "external_last_modified_at": "2026-05-28T14:30:00Z"
          },
          "original_transaction": {
            "created_at": "2026-05-28T14:30:00Z"
          }
        }
      }
    }
  ]
}