Choosing a surface
- Events — structured incidents: actors, event
category/subcategory, fatalities, Goldstein scale, and event-level metrics. - Stories — clustered narratives with top article evidence; best for discovery of emerging topics.
- Summaries (
/events/summary,/stories/summary) — dashboard totals and trend charts. Drill down into Events or Stories with the same filters. - Entities — people and organizations, with linked Stories/Events. Resolve a name first via
/entities/resolve. - Energy — GEM assets and owners; resolve an owner, then pull its cross-tracker portfolio.
- Facilities — the unified physical-asset directory (energy assets + ports + AI data centers); filter by
type/class/near, or pivot from anowner_entity_idto its whole portfolio.
Defaults worth adopting
- Use
limit=10for exploratory / API Playground requests, then raise it when you need more rows. - Use
sort=significancefor monitoring and dashboards;sort=recentwhen freshness matters more than importance. - Use plain-English geography in apps, e.g.
country=United States. - When writing code, pass parameters through your HTTP client’s
params/URLSearchParamsrather than hand-building URLs — clients encodeUnited Statescorrectly, and the API decodes both%20and+. - Omit dates for the past 24 hours. Explicit
date_start/date_endfilter by event or story date and the window must be 30 days or less. - Start broad, then narrow with geography,
category,subcategory, date windows, and semanticsearch. searchis true semantic retrieval on list endpoints only: v2 embeds the query, applies the structured filters as the candidate set, and ranks by cosine similarity. Summary endpoints do not acceptsearch.- Discover
admin1values per-country via/api/v2/geo/admin1?country=...before using them. - Treat inline
top_articlesas an evidence preview; use/api/v2/stories/{story_id}/articlesfor the full paginated source list.
Metric filters use canonical response-field names.
significance and confidence apply across families;
magnitude, systemic_importance, propagation_potential, and market_sensitivity only match CAMEO+
Events with those scores; goldstein_scale/goldstein_severity match Conflict and CAMEO+ POLITICAL
Events. See the full list in Taxonomy & Codes.Country, region, or continent monitoring
Infrastructure events
Use CAMEO+category=INFRASTRUCTURE as the canonical pattern:
Semantic event search
Protests today or recently
For a current list:New data center projects in Asia
Use Stories first because this is a narrative discovery task. Keeparticle_count_min=1 for emerging-project discovery; raise it only when you want more source volume.
Fatal conflict monitoring
Admin1 drilldown
Bounding box drilldown
Whencountry or admin1 is too coarse — straits, ports, basins, border zones, custom viewports — filter directly on Event coordinates with bbox=lat_min,lon_min,lat_max,lon_max:
country when you want events in a specific area of a specific country:
Story articles
Story list and detail responses return only the top 3 inline articles. Use the articles endpoint for the full source set:Resolve an entity, then fan out
/api/v2/entities/resolve is the fuzzy “find the entity” step — start there with a name, pick the best entity_id, then call the surfaces you need with that shared id (profile, exposure, filings, screening). See Entity resolution.
