Trades
List trades
GET /v1/tradesReturns 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
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 50 | Maximum rows to return. Capped at 100. |
cursor | string | none | Opaque cursor from pagination.next_cursor. |
start | string | none | Start date or timestamp. |
end | string | none | End date or timestamp. |