EndpointsTrades

Trades

List trades

GET /v1/trades

Returns paginated trade history for the authenticated user’s API key, ordered by executed_at descending.

curl "https://api.sixoneeighters.com/v1/trades?limit=50" \
  -H "Authorization: Bearer tja_live_xxx"

Get one trade

GET /v1/trades/{id}

Returns one trade with related journal context.

curl "https://api.sixoneeighters.com/v1/trades/123" \
  -H "Authorization: Bearer tja_live_xxx"

Query parameters

ParameterTypeDefaultDescription
limitnumber50Maximum rows to return. Capped at 100.
cursorstringnoneOpaque cursor from pagination.next_cursor.
startstringnoneStart date or timestamp.
endstringnoneEnd date or timestamp.