Skip to main content
GET
cURL

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List of trades.

id
string<uuid>

Trade identifier.

Example:

"5f63179b-61cb-4b72-9d3d-b02fea7c5611"

instrument
string

Instrument traded (BASE/QUOTE).

Example:

"AUDF/USDT"

side
enum<string>

Specifies the trade direction relative to the base currency of instrument.

Available options:
buy,
sell
Example:

"buy"

price
string

Executed price.

Example:

"0.6295"

amount
string

Requested amount (in currency).

Example:

"10"

currency
string

Currency of amount.

Example:

"AUDF"

buyAmount
string

Amount purchased (in buyCurrency).

Example:

"10"

buyCurrency
string

Currency of buyAmount.

Example:

"AUDF"

sellAmount
string

Amount sold (in sellCurrency).

Example:

"6.295"

sellCurrency
string

Currency of sellAmount.

Example:

"USDT"

createdAt
string<date-time>

Creation timestamp (ISO 8601).

Example:

"2024-06-27T00:45:10.040Z"