> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /imdb/titles/search

> Advanced IMDb title search with rich filters: keyword, title type, genres, user rating and votes, release date, runtime, country of origin, spoken language, US certificate, coloration, plot keywords, credited companies and people, major awards, IMDb ranked lists and adult-content handling, with sorting.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/movies-tv.json post /api/imdb/titles/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/imdb/titles/search:
    post:
      tags:
        - /imdb
      summary: /imdb/titles/search
      description: >-
        Advanced IMDb title search with rich filters: keyword, title type,
        genres, user rating and votes, release date, runtime, country of origin,
        spoken language, US certificate, coloration, plot keywords, credited
        companies and people, major awards, IMDb ranked lists and adult-content
        handling, with sorting.


        **Price:** 1 credit
      operationId: __api_imdb_titles_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImdbTitleSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ImdbTitleSearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ImdbTitleSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        title_type:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImdbTitleType'
              type: array
            - type: 'null'
        title_type_exclude:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImdbTitleType'
              type: array
            - type: 'null'
        genres:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImdbGenre'
              type: array
            - type: 'null'
        genres_exclude:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImdbGenre'
              type: array
            - type: 'null'
        rating_min:
          anyOf:
            - type: number
              maximum: 10
              minimum: 0
            - type: 'null'
        rating_max:
          anyOf:
            - type: number
              maximum: 10
              minimum: 0
            - type: 'null'
        votes_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        votes_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        release_date_from:
          anyOf:
            - type: string
            - type: 'null'
        release_date_to:
          anyOf:
            - type: string
            - type: 'null'
        runtime_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        runtime_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        countries:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        countries_exclude:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        languages:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        us_certificates:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImdbUsCertificate'
              type: array
            - type: 'null'
        color:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImdbColoration'
              type: array
            - type: 'null'
        keywords:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        companies:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        cast_or_crew:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        awards:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImdbAward'
              type: array
            - type: 'null'
        ranked_lists:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImdbRankedList'
              type: array
            - type: 'null'
        interests:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        adult:
          anyOf:
            - $ref: '#/components/schemas/ImdbAdultContent'
            - type: 'null'
        sort:
          $ref: '#/components/schemas/ImdbTitleSort'
          default: POPULARITY
        sort_order:
          $ref: '#/components/schemas/ImdbSortOrder'
          default: ASC
        country:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    ImdbTitleSearchResult:
      properties:
        '@type':
          type: string
          default: ImdbTitleSearchResult
        id:
          type: string
        url:
          type: string
        title_text:
          anyOf:
            - type: string
            - type: 'null'
        original_title:
          anyOf:
            - type: string
            - type: 'null'
        type_id:
          anyOf:
            - type: string
            - type: 'null'
        type_name:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: integer
            - type: 'null'
        end_year:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        runtime_minutes:
          anyOf:
            - type: integer
            - type: 'null'
        certificate:
          anyOf:
            - type: string
            - type: 'null'
        plot:
          anyOf:
            - type: string
            - type: 'null'
        genres:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ImdbTitleType:
      type: string
      enum:
        - movie
        - tvSeries
        - tvMiniSeries
        - tvMovie
        - tvSpecial
        - tvEpisode
        - tvShort
        - short
        - video
        - videoGame
        - musicVideo
        - podcastSeries
        - podcastEpisode
    ImdbGenre:
      type: string
      enum:
        - Action
        - Adult
        - Adventure
        - Animation
        - Biography
        - Comedy
        - Crime
        - Documentary
        - Drama
        - Family
        - Fantasy
        - Film-Noir
        - Game-Show
        - History
        - Horror
        - Music
        - Musical
        - Mystery
        - News
        - Reality-TV
        - Romance
        - Sci-Fi
        - Short
        - Sport
        - Talk-Show
        - Thriller
        - War
        - Western
    ImdbUsCertificate:
      type: string
      enum:
        - G
        - PG
        - PG-13
        - R
        - NC-17
    ImdbColoration:
      type: string
      enum:
        - COLOR
        - BLACK_AND_WHITE
        - COLORIZED
        - ACES
    ImdbAward:
      type: string
      enum:
        - OSCAR_WINNING
        - OSCAR_NOMINATED
        - EMMY_WINNING
        - EMMY_NOMINATED
        - GOLDEN_GLOBE_WINNING
        - GOLDEN_GLOBE_NOMINATED
    ImdbRankedList:
      type: string
      enum:
        - TOP_RATED_MOVIES
        - LOWEST_RATED_MOVIES
        - MOVIE_METER
        - TV_METER
        - TITLE_METER
    ImdbAdultContent:
      type: string
      enum:
        - EXCLUDE_ADULT
        - INCLUDE_ADULT
        - ONLY_ADULT
    ImdbTitleSort:
      type: string
      enum:
        - POPULARITY
        - USER_RATING
        - USER_RATING_COUNT
        - RELEASE_DATE
        - RUNTIME
        - YEAR
        - BOX_OFFICE_GROSS_DOMESTIC
        - METACRITIC_SCORE
        - RANKING
    ImdbSortOrder:
      type: string
      enum:
        - ASC
        - DESC
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````