v1

latestOpenAPI 3.0.12026-07-24207094.9 KB
Search

Search

Locate movies and TV shows (and their IDs) with lexical search or by external identifiers

post/svm/search

Request body

querystring

Provide a query term to search for TV show and movie titles. This parameter cannot be used if an identifier is provided.

identifierstring

Provide an ID to search for exact matches of TV show and movie external IDs. The accepted external IDs are Luminate Film & TV project ID or IMDb ID. This parameter cannot be used if a query string is provided.

frominteger

Offset from first result, used for pagination

sizeinteger

Number of results to return, used for pagination

Example request

{
  "query": "squid ga",
  "identifier": "tt31868189",
  "from": 20,
  "size": 10
}

Response

OK

Example response

{
  "data": {
    "hits": [
      {
        "id": "91b4ec3ad5a4b7a7eeb44d91befb3d1d",
        "release_information": [
          {
            "release_date": "2022-02-18"
          }
        ],
        "creators": [
          "Dan Erickson"
        ],
        "video_type": "tv_show",
        "season": "1",
        "external_ids": {
          "imdb": [
            "tt31868189"
          ],
          "lftv": [
            "226049"
          ]
        },
        "title": "Severance"
      }
    ],
    "query": "squid ga",
    "identifier": "tt31868189",
    "from": 20,
    "size": 10,
    "total_hits": 123,
    "success": true,
    "error_message": "Search timeout"
  }
}