Skip to main content
GET
/
v1
/
events
/
{event_id}
Get Event
curl --request GET \
  --url https://api.example.com/v1/events/{event_id}
Returns the full EventDetailResponse for a single event, including category-specific metadata and actor role breakdown. Returns 404 if the event ID does not exist.

Path Parameters

ParameterTypeRequiredDescription
event_idUUIDYesThe event’s unique identifier

Response

{
  "id": "ad8b3d2a-353f-41fd-908d-780615f31673",
  "title": "Armed clash between government and rebel forces",
  "description": "Clashes erupted between Nigerian military and insurgent forces in Maiduguri...",
  "eventCategory": "conflict",
  "eventType": "battles",
  "eventSubtype": "armed_clash",
  "eventDate": "2026-02-10",
  "eventDateEnd": null,
  "location": "Maiduguri",
  "locationCountry": "NG",
  "locationCoordinates": {
    "lat": 11.8311,
    "lng": 13.4302
  },
  "fatalities": 15,
  "injuries": 23,
  "abductions": 0,
  "civilianTargeting": false,
  "admin1": "Borno",
  "admin2": "Maiduguri",
  "admin3": null,
  "geoPrecision": 1,
  "salienceScore": 0.85,
  "articleCount": 3,
  "actorCount": 2,
  "sourceDomains": ["reuters.com", "bbc.co.uk"],
  "sourceTypes": ["news"],
  "createdAt": "2026-02-10T14:30:00Z",
  "updatedAt": "2026-02-10T14:30:00Z",
  "categorySpecificData": {
    "disorder_type": "Political violence"
  },
  "actorRolesBreakdown": null
}

Additional Fields (beyond EventResponse)

FieldTypeDescription
categorySpecificDataobjectCategory-specific metadata (nullable). Fields vary by category — see Event Taxonomy.
actorRolesBreakdownobjectBreakdown of actors by role (nullable)

Example Request

curl -H "X-API-Key: your-api-key" \
  "https://api.corpus.intrace.ai/v1/events/ad8b3d2a-353f-41fd-908d-780615f31673"

See Also