NOVA API

A deliberately small API

Base URLhttps://nova.strikemap.space
AuthenticationDemo only
EnvironmentDEMO
GET/headersOpen →

Inspect the request received by the origin — including what Cloudflare added.

curl https://nova.strikemap.space/headers
GET/healthzOpen →

Check origin health.

curl https://nova.strikemap.space/healthz
POST/api/ordersTry in UI →

Submit a demo order. Rate limited at the edge: 5 requests per 10 seconds.

curl -X POST https://nova.strikemap.space/api/orders -H "Content-Type: application/json" -d '{"symbol":"BTC-USDT","side":"buy","quantity":0.01}'
POST/api/ordersRate-limit demo

Send ten orders in a row. The first five reach the NOVA origin (200); the rest are rejected at the Cloudflare edge (429) before they reach Node.js.

for i in {1..10}; do curl -s -o /dev/null -w "%{http_code}\n" -X POST https://nova.strikemap.space/api/orders -H "Content-Type: application/json" -d '{"symbol":"BTC-USDT","side":"buy","quantity":0.01}'; done