Skip to content

TV Schedule

This API provides a complete daily schedule of TV broadcasts for a specific country. If no date or country is provided, it defaults to today in the US.

POST /api/v1/tv/schedule

The following parameters are accepted in the request body:

FieldTypeRequiredDescriptionExample
countrystringOptionalISO country code. Defaults to US.GB
datestringOptionalDate in YYYY-MM-DD format. Defaults to today.2026-05-29
Terminal window
curl -X POST https://heavstal.com.ng/api/v1/tv/schedule \
-H "Content-Type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"country": "US", "date": "2026-05-29"}'
{
"status": "success",
"creator": "HEAVSTAL TECH",
"cached": false,
"cache_ttl": 3600,
"data": {
"country": "US",
"date": "2026-05-29",
"count": 1,
"schedule": [
{
"id": 1234,
"show": "The Tonight Show",
"episode_name": "Special Guest Star",
"season": 12,
"number": 45,
"channel": "NBC",
"time": "23:35",
"runtime": 60
}
]
}
}