Skip to main content
GET
/
v1
/
trades
cURL
curl --request GET \
  --url https://api.sandbox.forte.cc/v1/trades \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "5f63179b-61cb-4b72-9d3d-b02fea7c5611",
    "instrument": "AUDF/USDT",
    "side": "buy",
    "price": "0.6295",
    "amount": "10",
    "currency": "AUDF",
    "buyAmount": "10",
    "buyCurrency": "AUDF",
    "sellAmount": "6.295",
    "sellCurrency": "USDT",
    "createdAt": "2024-06-27T00:45:10.040Z",
    "externalId": "client-trade-000123"
  }
]

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"