Your agent misremembers episodes, casts, and air dates; this returns real TV metadata and schedules.
Television metadata: search shows and people, get series details, episode lists, and cast, look up shows by external ID, and pull the daily TV schedule. Data is licensed CC BY-SA; credit TVmaze and link back using the `url` fields in the responses. For movie facts, use the knowledge namespace (Wikipedia/Wikidata).
Search TV shows by name, returning matches ranked by relevance.
Show name to search for.
curl -X POST "https://skill.askfaro.com/skills/tv/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Search for the show Severance"
}
}'askfaro describe tv/search_shows
Install pip install askfaro-cli, then askfaro auth login.
Get full details for a TV show by its TVmaze ID, optionally embedding related data.
TVmaze show ID.
Related data to embed in the response.
curl -X POST "https://skill.askfaro.com/skills/tv/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get full details for show 44933"
}
}'askfaro describe tv/show_details
Install pip install askfaro-cli, then askfaro auth login.
List all episodes for a TV show, in order.
TVmaze show ID.
Set to 1 to include special episodes.
curl -X POST "https://skill.askfaro.com/skills/tv/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "List all episodes of show 44933"
}
}'askfaro describe tv/show_episodes
Install pip install askfaro-cli, then askfaro auth login.
Get the cast of a TV show (actors and the characters they play).
TVmaze show ID.
curl -X POST "https://skill.askfaro.com/skills/tv/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Who is in the cast of show 44933?"
}
}'askfaro describe tv/show_cast
Install pip install askfaro-cli, then askfaro auth login.
Search for people (actors, crew) by name.
Person name to search for.
curl -X POST "https://skill.askfaro.com/skills/tv/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Search for the actor Adam Scott"
}
}'askfaro describe tv/search_people
Install pip install askfaro-cli, then askfaro auth login.
Get details for a person by TVmaze ID, optionally with their credits.
TVmaze person ID.
Related credits to embed.
curl -X POST "https://skill.askfaro.com/skills/tv/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get details for person 344165"
}
}'askfaro describe tv/person_details
Install pip install askfaro-cli, then askfaro auth login.
Find a TV show by an external ID (IMDb, TheTVDB, or TVRage).
IMDb ID, e.g. "tt0944947".
TVRage show ID.
TheTVDB show ID.
curl -X POST "https://skill.askfaro.com/skills/tv/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Find the TVmaze show for IMDb ID tt0944947"
}
}'askfaro describe tv/lookup_show
Install pip install askfaro-cli, then askfaro auth login.
Get the TV schedule of episodes airing on a given day and country.
Date in YYYY-MM-DD format.
ISO 3166-1 alpha-2 country code (e.g. "US", "GB").
curl -X POST "https://skill.askfaro.com/skills/tv/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What TV episodes air in the US on 2026-01-15?"
}
}'askfaro describe tv/schedule
Install pip install askfaro-cli, then askfaro auth login.