Skip to main content
GET
/
trades
cURL
curl --request GET \
  --url https://gateway.architect.exchange/api/trades \
  --header 'Authorization: Bearer <token>'
{
  "trades": [
    {
      "tn": 1,
      "ts": 123,
      "d": "B",
      "p": "<string>",
      "q": 123,
      "s": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

User session token

Query Parameters

symbol
string
required
limit
integer<int32> | null

The maximum number of trades to return, up to 100 trades. Defaults to 10.

Required range: x >= 0

Response

200 - application/json

List of trades

trades
object[]
required