Quickstart

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:

  1. Open Profile.
  2. Find API Key Generate.
  3. Enter a key name.
  4. Choose an expiry window.
  5. 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.