# War Tracker Event-Type Hub Page

> War Tracker Event-Type Hub Page 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).

Returns a server-rendered HTML hub page aggregating all conflict events matching a given classification slug (e.g. strike, drone-strike, airstrike), with embedded CollectionPage and Dataset JSON-LD metadata.

## Facts

- Endpoint: GET https://war-tracker.com/event-type/strike
- 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-7874612d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I388db9Q-wVDqZHgQFKZx

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-7874612d
```

Example prompt: Pull up the war-tracker hub page for 'drone-strike' events so I can see all aggregated drone strike incidents and the embedded structured data linking to the full event API.

## When to prefer this

Use this endpoint when you need a browsable, structured overview of all conflict events of a specific type (e.g. all drone strikes), especially when you want both human-readable HTML and machine-readable JSON-LD metadata in one response. Prefer this over the raw /api/v1/events endpoint when you need the canonical hub page with CollectionPage schema markup, or when discovering what events exist under a classification before drilling into individual records.

## Known failure modes

- Invalid or unknown slug returns 404 HTML page with no events
- Slug not in canonical taxonomy returns empty results or error
- Payment not included or insufficient results in 402 Payment Required
- Malformed slug (uppercase, spaces) may return 404 or redirect
- API backend unavailable causes 503 or degraded HTML with no JSON-LD

## 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 for the given event-type slug containing a list of aggregated conflict events of that classification, plus embedded CollectionPage and Dataset JSON-LD structured data that includes a distribution URL pointing to /api/v1/events?event_type={slug} for machine-readable access.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "slug": "drone-strike"
  },
  "queryParams": {
   "slug": "drone-strike"
  }
 }
}
```

## 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-7874612d/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)
