Get transactions details

Retrieve transactions. This endpoint allows partners to fetch the transactions, using pagination.

SecuritybearerAuth
Request
query Parameters
cursor
string <uuid>

Cursor - Transaction ID - transactions before or after this ID

Example: cursor=01989e23-2827-7f5f-b286-112d5be2cf65
page_size
integer [ 1 .. 100 ]

Number of elements to be displayed on a page

Example: page_size=10
direction
string

Direction of the query (default after)

Enum: "before" "after"
Example: direction=after
sort
string

Sort direction

Enum: "newest" "oldest"
Example: sort=newest
status
Array of any <string>

Filter transactions by status

Items Enum: "created" "authorized" "completed" "processing" "failed" "cancelled"
Example: status=completed
fiat_id
Array of any <uuid>

Fiat ID

Example: fiat_id=01989e23-2827-7f5f-b286-112d5be2cf65
start_time
string <date-time>

Start time for filtering transactions

Example: start_time=2023-10-18T23:35:24+00:00
end_time
string <date-time>

End time for filtering transactions

Example: end_time=2024-10-18T23:35:24+00:00
Responses
200

Get transactions details

401

Unauthorized

422

Validation error

500

Internal Server Error

get/pay/v1/transactions
Request samples
Response samples
application/json
{
  • "data": [
    ]
}