Inspect the request received by the origin — including what Cloudflare added.
curl https://nova.strikemap.space/headersNOVA API
Inspect the request received by the origin — including what Cloudflare added.
curl https://nova.strikemap.space/headersCheck origin health.
curl https://nova.strikemap.space/healthzSubmit 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}'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