Overview
get_top_entities returns the top people and organizations by total article coverage across the GDELT Cloud news corpus. Results draw from the GEG (GDELT Entity Graph) — GDELT’s entity extraction pipeline that identifies and resolves named entities from millions of global news articles daily.
Use this tool to quickly surface the most newsworthy actors in a given time window, optionally filtered by entity type or a search query. Each result includes a Wikipedia URL (when available) enabling deeper research.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
days | integer | 7 | Lookback window in days from date. Max 30. |
date | string | today UTC | Anchor/end date in YYYY-MM-DD format. |
limit | integer | 20 | Number of entities to return (max 100). |
type | enum | — | Filter to 'person' or 'organization'. If omitted, returns both. |
search | string | — | Filter by entity name (substring match, case-insensitive). Useful for checking coverage of a specific person or organization (e.g. 'Trump', 'NATO'). |
Data Structure
Each returned entity contains:| Field | Description |
|---|---|
canonical_name | Resolved canonical entity name (Wikipedia-normalized where possible). |
entity_type | 'person' or 'organization'. |
wikipedia_url | Wikipedia page URL, or null if no Wikipedia match was found. |
total_articles | Number of distinct articles mentioning this entity in the time window. |
total_mentions | Total raw mention count (an entity may appear multiple times in one article). |
Usage Patterns
Who is dominating the news?
Focus on specific entity type
Lookup a specific entity
Example queries
Common Use Cases
- “Who are the most newsworthy people right now?” →
type='person', days=7 - “Which organizations are dominating coverage?” →
type='organization', days=7 - “How much coverage did Trump get this month?” →
search='Trump', days=30 - “What were the top entities during the UN General Assembly?” →
days=7, date='2025-09-26' - “Find the top 50 entities globally this week” →
days=7, limit=50
Notes on Entity Resolution
- Entities are extracted from news articles using GDELT’s NLP pipeline and resolved to Wikipedia canonical names where possible.
total_articlescounts distinct articles;total_mentionscounts all occurrences including repeated references within a single article.- The same real-world entity may appear under slightly different names if disambiguation is uncertain. Use
searchto check for variants. wikipedia_urlis null for entities without a confident Wikipedia match (common for local officials, minor organizations).

