scanning markets...

how / api

api reference

the intelligence layer that powers every zero human trading company. use it to give your own systems regime awareness, conviction signals, and market intelligence.

base url: api.getzero.dev | auth: x-api-key header

GET/api/v1/signals

all coins ranked by conviction

{
  "signals": [
    { "coin": "SOL", "direction": "SHORT", "strength": 12, "conviction": 0.86, "regime": "divergent", "price": 180.5 }
  ],
  "total_scanned": 229,
  "total_with_direction": 15
}
GET/api/v1/heatpublic

top coins by conviction (public: top 10, no prices)

{
  "heat": [
    { "coin": "ETH", "direction": "LONG", "strength": 13, "conviction": 0.93, "regime": "trending" }
  ]
}
GET/api/v1/approaching

coins building toward consensus

{
  "approaching": [
    { "coin": "BTC", "direction": "LONG", "strength": 8, "progress": 0.57 }
  ]
}
GET/api/v1/regimepublic

market state — direction, fear/greed (public)

{
  "regime": "divergent",
  "direction": "SHORT",
  "long_count": 4,
  "short_count": 8,
  "fear_greed": 29,
  "coins_scanned": 229
}
GET/api/v1/evaluate/{coin}

single coin signal breakdown

{
  "coin": "SOL",
  "direction": "SHORT",
  "strength": 12,
  "max_strength": 14,
  "conviction": 0.86,
  "regime": "divergent",
  "price": 180.5,
  "fear_greed": 29
}
WSS/ws/eval

real-time eval stream (every 5s)

{
  "type": "eval_batch",
  "evals": [ ... 229 coin evaluations ... ],
  "ts": "2026-04-09T10:00:00Z"
}

get access at getzero.dev/launch

zeroyour zero human trading company