Endpoint Playground
Test Crawlora's GDELT Television Visual 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-visual-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=visualentitydetails&maxrecords=100",
"fetched_at": "2026-08-20T10:00:00Z",
"entities": [
{
"label": "person"
},
{
"label": "snapshot"
},
{
"label": "photograph"
}
]
}
}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 computer-vision object/activity
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://api.gdeltproject.org/api/v2/tvai/tvai?format=json&mode=visualentitydetails&maxrecords=100",
"fetched_at": "2026-08-20T10:00:00Z",
"entities": [
{
"label": "person"
},
{
"label": "snapshot"
},
{
"label": "photograph"
}
]
}
}curl "https://api.crawlora.net/api/v1/gdelt/tv-visual-entities" \
-H "x-api-key: $CRAWLORA_API_KEY"