TV Program Keyword Converter API

Public

API Details

This API specializes in converting any string input related to TV programming into a relevant keyword search string. The converted keyword is optimized for use with TV schedule APIs that utilize a single keyword parameter for searches. It processes natural language descriptions, titles, or general queries about TV shows and distills them into concise, search-friendly keywords. This conversion enhances the efficiency and accuracy of TV program searches, making it easier for users to find the content they're looking for in TV schedules and programming guides.

Request Schema

PropertyTypeRequiredDescription
input
string
required
Any string related to TV programming that needs to be converted into a keyword search string.

Response Schema

PropertyTypeRequiredDescription
keyword
string
required
The converted keyword search string suitable for use with a TV schedule API.

API Metadata

ID653
Version
v1
Method
post
Endpoint

/tv-program-keyword-converter-api/v1

Tags
TV
programming
search
keyword
conversion

API Examples

Example Request
{
  "input": "I want to watch that show about dragons and medieval politics"
}
Example Response
{
  "keyword": "game of thrones"
}