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/signalsall 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/heatpublictop coins by conviction (public: top 10, no prices)
{
"heat": [
{ "coin": "ETH", "direction": "LONG", "strength": 13, "conviction": 0.93, "regime": "trending" }
]
}GET
/api/v1/approachingcoins building toward consensus
{
"approaching": [
{ "coin": "BTC", "direction": "LONG", "strength": 8, "progress": 0.57 }
]
}GET
/api/v1/regimepublicmarket 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/evalreal-time eval stream (every 5s)
{
"type": "eval_batch",
"evals": [ ... 229 coin evaluations ... ],
"ts": "2026-04-09T10:00:00Z"
}get access at getzero.dev/launch