Chronos Terminal
Sign inGET ACCESS
CHRONOS API

Tokenized asset intelligence, machine-readable.

The same live data the terminal runs on meme scanner calls, perp signals with tracked outcomes, xStocks NAV divergence, commodity and regime reads delivered as clean JSON over REST. Feed your own dashboards, bots, Discord/Telegram communities, or research pipelines.

EARLY ACCESSThe v1 surface below is live for early-access partners. Endpoint shapes are stable in spirit but may evolve before general availability breaking changes are announced in advance to API-tier subscribers.
REQUEST EARLY ACCESS

Authentication

Every request carries your API key as a bearer token:

GET https://api.chronosterminal.com/v1/meme/calls
Authorization: Bearer ck_live_xxxxxxxxxxxx

Keys are issued per account on the API tier ($199/mo) and can be rotated any time from your dashboard. Keep keys server-side never ship them in client-side code.

Rate limits (launch defaults)

  • 60 requests/minute, 10,000/day per key
  • Burst-friendly: short spikes are tolerated, sustained abuse is throttled
  • 429 responses include a Retry-After header
  • Higher limits: contact us metered plans available for platforms

Endpoints \u2014 v1

MEMES
GET/v1/meme/calls
Every scanner call, timestamped at fire, tracked to outcome.
Query params: status=open|resolved|all (default all), limit (max 200), since (unix ms).
Returns per call: symbol, address, fired_at, entry_mc, tier, live_score, bp_pct, safety_score, peak_mc, peak_x, max_drawdown_pct, final_x, outcome (rug|flat|runner|big_runner|moonshot), open.
The full record losses included. Same data our public track record is built from.
GET/v1/meme/tokens
Currently tracked live tokens with scores, market cap, buy pressure, and momentum. The live scanner state, refreshed continuously.
GET/v1/meme/hof
Hall of Fame verified top calls with peak multiples and first-seen timestamps.
PERPS
GET/v1/perps/signals
Live and recent perp signals: asset, direction, entry, invalidation (SL), targets (TP ladder), pattern, confluence score, and the live base rate of the exact setup at signal time.
GET/v1/perps/outcomes
Resolved signal outcomes with realized R-multiples the auditable history. Query params: limit, since, pattern.
MARKET INTELLIGENCE
GET/v1/intel/xstocks
Tokenized equities vs. real NAV: live premium/discount per asset. Observable-relationship data only no buy/sell signals on this endpoint (see Compliance below).
GET/v1/intel/commodities
Gold, silver, platinum, crude, natural gas spot reads and regime classification.
GET/v1/market/regime
The platforms current market read: BTC trend, sentiment, cycle phase, session, and the one-line verdict the Overview page runs on.
COMING IN v1.x ROADMAP, NOT YET LIVE
  • Webhooks: push on new meme call / new perp signal
  • WebSocket stream for live token updates
  • Per-strategy expectancy leaderboard endpoint

Response format

All endpoints return JSON:

{
  "ok": true,
  "data": [ ... ],
  "meta": { "count": 87, "generated_at": "2026-07-06T02:14:09Z" }
}

Errors:

{ "ok": false, "error": "rate_limited", "retry_after_s": 22 }

Compliance & fair use

  • Chronos data is market intelligence, not financial advice. Signals are informational; you and your users trade at your own risk.
  • xStocks and commodities endpoints provide observational intel only (prices, NAV divergence, regime) no directional signals, by design.
  • Redistribution: feeding your own private dashboards, bots, and communities is what this is for. Reselling raw Chronos data as a competing feed is not see Terms.
  • Past performance does not guarantee future results.

Quickstart

curl -H "Authorization: Bearer ck_live_xxx" \
  "https://api.chronosterminal.com/v1/meme/calls?status=resolved&limit=5"

Five most recent resolved calls, outcomes included, in under a second.

REQUEST EARLY ACCESS