Summary
GET /v1/summaryReturns compact account context for a date window, including performance statistics, recent journals, weekly reviews, missed trades, top symbols, common tags, and common mistakes.
Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
period | string | 30d | Summary window, such as 7d, 30d, or 90d. Capped at 365 days. |
days | number | none | Alternative numeric window. Capped at 365 days. |
Request
curl "https://api.sixoneeighters.com/v1/summary?period=30d" \
-H "Authorization: Bearer tja_live_xxx"Response shape
{
"data": {
"period": {
"days": 30,
"start": "2026-04-15T00:00:00.000Z",
"end": "2026-05-15T00:00:00.000Z"
},
"performance": {},
"top_symbols": {},
"common_tags": {},
"common_mistakes": {},
"recent_journals": [],
"weekly_reviews": [],
"missed_trades": []
}
}