Programmatic, keyed access to the live intelligence feeds behind the map — classified OSINT events, verified strikes, markets, and prediction odds. Clean REST, JSON out.
Your API key is created automatically when you subscribe. Cancel anytime.
/allCreated automatically the moment you subscribe. Three ways to retrieve it:
/api/key (see below).ds_live_… (32 hex). Treat it like a password — anyone holding it spends your quota. Rotate it from the account panel if it leaks.Send your key in the x-api-key header on every request.
curl https://www.deltasweep.com/api/v1/events \
-H "x-api-key: ds_live_xxxxxxxxxxxxxxxxxxxxxxxx"
X-RateLimit-Limit: 1000 X-RateLimit-Remaining: 987
429 · missing/invalid key → 401 · revoked key → 403.| Endpoint | Returns |
|---|---|
| GET/api/v1/events | Classified OSINT events — type, severity, lat/lng, time, source |
| GET/api/v1/strikes | Verified strikes |
| GET/api/v1/markets | Financial news / market feed |
| GET/api/v1/odds | Prediction-market (Polymarket) odds |
| GET/api/v1/all | Everything above in one payload |
{
"ok": true,
"feed": "events",
"generated": "2026-07-23T09:00:00.000Z",
"events": [
{
"id": "…",
"title": "Air-defense activation reported over northern approach",
"type": "Air Defense",
"severity": "High",
"lat": 35.7, "lng": 51.4,
"time": "2026-07-23T08:57:00.000Z",
"source": "…",
"url": "https://…"
}
]
}
Active subscribers can fetch or rotate their key programmatically:
curl -X POST https://www.deltasweep.com/api/key \
-H "Content-Type: application/json" \
-d '{"action":"get","email":"you@example.com"}'
Use "action":"regenerate" to rotate — the old key stops working immediately.
Data is sourced from public/open sources and provided for informational use. Don't resell raw feeds or exceed your plan's limits. Keys are personal — keep them secret.