ΔELTASWEEP
Developer Platform

Δ The DeltaSweep API

Programmatic, keyed access to the live intelligence feeds behind the map — classified OSINT events, verified strikes, markets, and prediction odds. Clean REST, JSON out.

Plans

Your API key is created automatically when you subscribe. Cancel anytime.

API · Standard
$99 /mo
300 requests / day
  • Classified OSINT events
  • Verified strikes feed
  • Markets & prediction odds
  • Instant API key
Get access →
BEST FOR PRODUCTION
API · Pro
$169 /mo
1,000 requests / day
  • Everything in Standard
  • Full feed endpoint /all
  • Higher rate limit
  • Priority support
Get access →

Get your key

Created automatically the moment you subscribe. Three ways to retrieve it:

  1. In the app — open the trackerACCOUNT (top-right) → Developer API KeyShow my API key. See usage & rotate it there.
  2. Via the API — POST your email to /api/key (see below).
  3. Bought before this launched? Email info@deltasweep.com.
Your key looks like ds_live_… (32 hex). Treat it like a password — anyone holding it spends your quota. Rotate it from the account panel if it leaks.

Authentication

Send your key in the x-api-key header on every request.

Request
curl https://www.deltasweep.com/api/v1/events \
     -H "x-api-key: ds_live_xxxxxxxxxxxxxxxxxxxxxxxx"
Response headers
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 987
Limits reset daily at 00:00 UTC. Over the limit → 429 · missing/invalid key → 401 · revoked key → 403.

Endpoints

EndpointReturns
GET/api/v1/eventsClassified OSINT events — type, severity, lat/lng, time, source
GET/api/v1/strikesVerified strikes
GET/api/v1/marketsFinancial news / market feed
GET/api/v1/oddsPrediction-market (Polymarket) odds
GET/api/v1/allEverything above in one payload

Example — events

{
  "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://…"
    }
  ]
}

Get / rotate your key

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.

Terms

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.