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

{
  "type": "object",
  "required": [
    "input"
  ],
  "properties": {
    "input": {
      "type": "string",
      "description": "Any string related to TV programming that needs to be converted into a keyword search string."
    }
  }
}

Response Schema

{
  "type": "object",
  "required": [
    "keyword"
  ],
  "properties": {
    "keyword": {
      "type": "string",
      "description": "The converted keyword search string suitable for use with a TV schedule API."
    }
  }
}

API Metadata

653

1

TV
programming
search
keyword
conversion

API Examples

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