# War Tracker Military Strike Event-Type Hub

> War Tracker Military Strike Event-Type Hub 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-15).

Returns an HTML hub page aggregating all conflict events classified as 'military-strike', with embedded CollectionPage and Dataset JSON-LD linking to the underlying API query.

## Facts

- Endpoint: GET https://war-tracker.com/event-type/military-strike
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/war-tracker-com-0fb3b1d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M1_R9B2jTxDkUEjP0UxHJ

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-0fb3b1d4
```

Example prompt: Pull up the war-tracker.com hub page for military-strike events — I want the full HTML with the embedded JSON-LD dataset that links back to the events API.

## When to prefer this

Use this endpoint when you need a human-readable or structured-metadata-enriched view of all military-strike events in one call, especially when you want the JSON-LD CollectionPage/Dataset annotations for semantic parsing or when you want to discover the API query URL (/api/v1/events?event_type=military-strike) without constructing it manually. Prefer the raw /api/v1/events endpoint if you need paginated JSON records directly.

## Known failure modes

- Slug not found — returns 404 HTML page if 'military-strike' is not a recognized event-type classification
- Payment failure — x402 payment protocol error if USDC payment is rejected or wallet is underfunded
- Rate limiting — HTTP 429 if too many requests are made in a short window
- JSON-LD absent — page may render without structured metadata if the event corpus for the slug is empty
- Stale data — HTML reflects last crawl/update cycle, may lag real-time events by hours

## How this service works

Event-type hub page at /event-type/{slug}. Aggregates events matching one classification slug (e.g. drone-strike, airstrike, skirmish). HTML with embedded CollectionPage + Dataset JSON-LD pointing back at /api/v1/events?event_type={slug}.

## Output

Server-rendered HTML page listing all events classified under the 'military-strike' slug. The page embeds structured JSON-LD in CollectionPage and Dataset schemas, with a distribution link pointing to /api/v1/events?event_type=military-strike for programmatic access to the underlying event records.

## Example request

```json
{}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "Event-type slug (lowercase, dash-separated). See /api/v1/event-types for the canonical taxonomy — includes slugs like `drone-strike`, `airstrike`, `skirmish`, `naval-engagement`."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "Event-type slug (lowercase, dash-separated). See /api/v1/event-types for the canonical taxonomy — includes slugs like `drone-strike`, `airstrike`, `skirmish`, `naval-engagement`."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "string",
     "description": "Server-rendered event-type hub HTML. Embeds CollectionPage + Dataset JSON-LD distribution that points back at /api/v1/events?event_type={slug}.",
     "contentMediaType": "text/html"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/war-tracker-com-0fb3b1d4/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)
