Get transactions

GET/v2/transactions

Retrieves a list of transactions filtered by optional parameters.

Headers

Name
Value

Content-Type

application/json

x-api-key

<token>

Body

Name
Type
Description

id

integer

The transaction ID

extID

string

The external transaction ID

status

string

The status of the transaction.

Available values :success, pending, canceled, dispute

createdAtFrom

string($date)

The start date for filtering transactions.

createdAtTo

string($date)

The end date for filtering transactions.

requisite

string

The requisite associated with the transaction.

Пример Body

[
  {
    "id": 123,
    "extID": "example-ext-id",
    "requisite": "+1234567890",
    "createdAt": "2025-01-01T00:00:00.000Z",
    "expiresAt": "2025-12-31T23:59:59.999Z",
    "amount": 1000,
    "amountInUsdt": 10.5,
    "paymentMethod": "cross",
    "status": "success"
  }
]

Response

{
  "message": "Transaction canceled."
}

Last updated