# War Tracker Event Article - Share Page

> War Tracker Event Article - Share Page is a paid API for AI agents from war-tracker.com, paid per call via x402, $0.001000/call, status unknown (last checked 2026-09-13).

Returns an SEO HTML article (with embedded JSON-LD schema.org graph) or JSON data for a specific conflict event by numeric event ID

## Facts

- Endpoint: GET https://war-tracker.com/share/397003/military-withdrawal-qasrak-syria
- Price: $0.001000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/war-tracker-com-d089f5af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oTnlG9oK18wV1sV58bgCK

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-d089f5af
```

Example prompt: Pull up the war-tracker article for event ID 397003 — the military withdrawal in Qasrak, Syria — and give me the full event details including any FAQ and video metadata.

## When to prefer this

Use this endpoint when you need a fully rendered, shareable article page for a specific conflict event — especially when you need schema.org structured data (NewsArticle, Event, VideoObject, FAQPage) embedded in HTML for SEO or downstream parsing. Prefer the JSON response mode (Accept: application/json) when you need machine-readable event data without HTML parsing. Use over /api/v1/events/{id} directly when you also need the shareable URL or structured markup.

## Known failure modes

- Invalid or non-existent event_id returns 404 not found
- Malformed event_id (non-numeric) fails schema validation
- Payment not provided or insufficient results in 402 Payment Required
- Slug mismatch is tolerated (server canonicalises), so no error on wrong slug
- Service unavailable or event data not yet indexed returns 503 or empty body

## How this service works

Generic per-event article template at /share/{event_id}/{slug} (substitute any id/slug from /api/v1/events). Default response is SEO HTML with embedded JSON-LD @graph (NewsArticle + Event + VideoObject + FAQPage) for the requested event. Content-negotiable: Accept application/json returns the same JSON as /api/v1/events/{id}. One payment covers either representation. OpenAPI probe id 397003 is an audit example only.

## Output

Server-rendered HTML page with embedded JSON-LD @graph containing NewsArticle, Event, VideoObject, and FAQPage schema.org objects; or, if Accept: application/json is sent, the same structured JSON payload as the /api/v1/events/{id} endpoint — covering event details, location, media references, and FAQ content for the requested conflict event.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "slug": "military-withdrawal-qasrak-syria",
   "event_id": "397003"
  }
 }
}
```

## 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": [
      "event_id"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "URL slug (cosmetic — server canonicalises)."
      },
      "event_id": {
       "type": "string",
       "pattern": "^[0-9]+$",
       "description": "Numeric event id from /api/v1/events."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "event_id"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "URL slug (cosmetic — server canonicalises)."
      },
      "event_id": {
       "type": "string",
       "pattern": "^[0-9]+$",
       "description": "Numeric event id from /api/v1/events."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "string",
     "description": "Server-rendered HTML article with embedded schema.org JSON-LD @graph (NewsArticle + Event + VideoObject + FAQPage). Send `Accept: application/json` to receive the same data as the /api/v1/events/{id} JSON payload instead.",
     "contentMediaType": "text/html"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "_nonJson",
  "_preview",
  "_contentType"
 ],
 "properties": {
  "_nonJson": {
   "type": "boolean"
  },
  "_preview": {
   "type": "string"
  },
  "_contentType": {
   "type": "string"
  }
 }
}
```

## More

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