Story event lookup
curl -H "X-API-Key: $ZETTAWIRE_API_KEY" \ https://api.zettawire.com/api/v1/stories/signal-18431
- Returns schema_version
- Includes canonical_url
- Includes archive_tier for paid packages
Examples
These examples show the API shape developers can evaluate before moving into account-backed keys and webhook beta access.
curl -H "X-API-Key: $ZETTAWIRE_API_KEY" \ https://api.zettawire.com/api/v1/stories/signal-18431
curl -H "X-API-Key: $ZETTAWIRE_API_KEY" \ "https://api.zettawire.com/api/v1/stories?category=security&limit=25"
app.post("/zettawire/webhook", verifySignature, (req, res) => {
const signal = req.body.data;
queueInternalAlert(signal.event_id, signal.canonical_url);
res.sendStatus(204);
});GET /api/v1/stories/{story_id}
A safe preview of the object shape developers receive from account-backed Signals API access.
{
"schema_version": "2026-04-22",
"event_id": "evt_20260422_red_sea_18431",
"story_id": "signal-18431",
"headline": "Port disruption near Suez corridor raises shipping risk",
"category": "security",
"score": 8.4,
"source_confidence": "multi_source",
"confirmation_status": "developing",
"canonical_url": "https://zettawire.com/stories/signal-18431",
"related_briefing_url": "https://zettawire.com/briefing/red-sea-shipping-risk",
"geo": {
"country": "Egypt",
"region": "Red Sea",
"lat": 30.04,
"lng": 32.56
},
"affected_entities": [
{
"name": "Suez Canal",
"type": "infrastructure",
"confidence": 0.86
},
{
"name": "Container shipping",
"type": "sector",
"confidence": 0.82
}
],
"key_facts": [
"Shipping advisories point to elevated risk near a major chokepoint.",
"The signal is linked to recent maritime security and regional escalation updates."
],
"archive_tier": "signals_growth",
"delivery_state": "api",
"published_at": "2026-04-22T12:20:00Z"
}Versioned
schema_version 2026-04-22 keeps clients explicit.
Canonical
Every event points back to a first-party ZettaWire URL.
Commercial
archive_tier and delivery_state separate evaluation from paid access.
Webhook sample payload
{
"schema_version": "2026-04-22",
"event": "signal.published",
"delivery_id": "del_01HW...",
"data": {
"event_id": "evt_20260422_red_sea_18431",
"canonical_url": "https://zettawire.com/stories/signal-18431",
"category": "security",
"score": 8.4
}
}Beta access
We use this form to understand developer demand, integration use cases, and which public pages produce qualified API leads.