Endpoint Playground
Test Crawlora's GDELT Television Concept Entities API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/gdelt/tv-concept-entities" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Maximum entries to return, most-frequent first. |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://api.gdeltproject.org/api/v2/tvai/tvai?format=json&mode=capnlpentitydetails&maxrecords=100",
"fetched_at": "2026-08-20T10:00:00Z",
"entities": [
{
"mid": "/m/09c7w0",
"label": "U.S."
},
{
"mid": "/m/0cqt90",
"label": "DONALD TRUMP"
},
{
"mid": "/m/016bvz",
"label": "NBC NEWS"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Return GDELT's own catalog of Google Knowledge Graph concept
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://api.gdeltproject.org/api/v2/tvai/tvai?format=json&mode=capnlpentitydetails&maxrecords=100",
"fetched_at": "2026-08-20T10:00:00Z",
"entities": [
{
"mid": "/m/09c7w0",
"label": "U.S."
},
{
"mid": "/m/0cqt90",
"label": "DONALD TRUMP"
},
{
"mid": "/m/016bvz",
"label": "NBC NEWS"
}
]
}
}curl "https://api.crawlora.net/api/v1/gdelt/tv-concept-entities" \
-H "x-api-key: $CRAWLORA_API_KEY"