Quickstart
Create a temporary key in the app under Profile > API Key Generate, then call the API with that key.
1. Create a key
In the 618ers app:
- Open Profile.
- Find API Key Generate.
- Enter a key name.
- Choose an expiry window.
- Create the temporary key and copy it immediately.
The raw key is shown once.
2. Call the summary endpoint
curl "https://api.sixoneeighters.com/v1/summary?period=30d" \
-H "Authorization: Bearer tja_live_xxx"3. Read the response
{
"data": {
"period": {
"days": 30,
"start": "2026-04-15T00:00:00.000Z"
},
"performance": {
"trade_count": 42,
"net_pnl": 1280.5
},
"top_symbols": {
"NQ": 12,
"ES": 8
},
"recent_journals": []
}
}4. Revoke when finished
Revoke the key from Profile > API Key Generate when an integration no longer needs access.