# War Tracker Event Detail by ID

> War Tracker Event Detail by ID is a paid API for AI agents from war-tracker.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Fetches full details for a specific conflict/war-tracker event by its numeric ID, including headline, description, location, media, and structured metadata.

## Facts

- Endpoint: GET https://war-tracker.com/api/v1/events/397003
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/war-tracker-com-5b5cd05a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wo5PAyalPKahUlnZuDNkc

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability war-tracker-com-5b5cd05a
```

Example prompt: Can you pull up the full details for war-tracker event 397003 — I need the headline, description, location, date, and any media or source links associated with it.

## When to prefer this

Use this endpoint when you have a specific event ID and need the full structured record for that event, including article text, media, geolocation, and metadata. Prefer this over the paginated events list endpoint when you already know the event ID and want deep detail rather than a summary. It is the canonical single-record lookup for war-tracker events.

## Known failure modes

- Event ID not found — returns 404 or empty result if the ID does not exist in the database
- Invalid event_id format — non-numeric IDs will be rejected by schema validation
- Payment failure — x402 micropayment of $0.001 USDC not fulfilled, request blocked
- Null fields — many fields (lat, lng, date, media_url, etc.) may be null if data is unavailable for that event
- Rate limiting — excessive requests may be throttled

## How this service works

War-Tracker is a live war tracker map showing real-time military strikes and conflict events worldwide. Unbiased, uncensored OSINT: track Ukraine, Middle East, and global conflicts with video evidence as they happen.

## Output

Returns a rich event object including: numeric ID, headline, full description, TLDR summary, event type, date, country name, ISO country code, region slug, latitude/longitude coordinates, source URL, media URL, thumbnail URL, transcript, article paragraphs, FAQ array, confidence score, super-event reference, JSON-LD graph, and canonical URL.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": 12345,
  "faq": [
   {
    "a": "...",
    "q": "..."
   }
  ],
  "lat": 36.2,
  "lng": 37.13,
  "date": "2026-05-12",
  "tldr": "On May 12, 2026 ...",
  "country": "SY",
  "headline": "Strike – Aleppo",
  "is_video": false,
  "location": "Aleppo",
  "modified": "2026-05-12T17:32:00Z",
  "has_media": true,
  "media_url": "https://war-tracker.com/media/12345",
  "confidence": "HIGH",
  "event_type": "Strike",
  "source_url": null,
  "transcript": null,
  "description": "Open-source posts described a strike on infrastructure ...",
  "region_slug": "middle-east",
  "super_event": {
   "url": "...",
   "name": "Russo-Ukrainian War",
   "startDate": "2022-02-24"
  },
  "country_name": "Syria",
  "jsonld_graph": {
   "@graph": [
    "...NewsArticle, Event, VideoObject, BreadcrumbList, FAQPage..."
   ],
   "@context": "https://schema.org"
  },
  "canonical_url": "https://war-tracker.com/share/12345/syria-strike-2026-05-12",
  "thumbnail_url": "https://war-tracker.com/video/thumb/12345",
  "article_paragraphs": [
   "..."
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/war-tracker-com-5b5cd05a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from war-tracker.com](https://www.zero.xyz/host/war-tracker.com/llms.txt)
