> ## 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.

# /kinopoisk/films

> Get full Kinopoisk movie or TV series details by ID or URL: titles, ratings (Kinopoisk/IMDb/critics), genres, countries, box office, age rating, top-250 position, crew and cast.

**Price:** 5 credits

**⚠️ Common errors:** 412: Title not found (well-formed but nonexistent movie/series ID)



## OpenAPI

````yaml /openapi/movies-tv.json post /api/kinopoisk/films
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/kinopoisk/films:
    post:
      tags:
        - /kinopoisk
      summary: /kinopoisk/films
      description: >-
        Get full Kinopoisk movie or TV series details by ID or URL: titles,
        ratings (Kinopoisk/IMDb/critics), genres, countries, box office, age
        rating, top-250 position, crew and cast.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Title not found (well-formed but nonexistent
        movie/series ID)
      operationId: __api_kinopoisk_films_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KinopoiskFilmsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KinopoiskFilm'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KinopoiskFilmsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        film:
          type: string
          minLength: 1
      type: object
      required:
        - film
    KinopoiskFilm:
      properties:
        '@type':
          type: string
          default: KinopoiskFilm
        id:
          type: integer
        type:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        original_name:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: integer
            - type: 'null'
        short_description:
          anyOf:
            - type: string
            - type: 'null'
        tagline:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        genres:
          items:
            type: string
          type: array
          default: []
        countries:
          items:
            type: string
          type: array
          default: []
        duration:
          anyOf:
            - type: integer
            - type: 'null'
        age_restriction:
          anyOf:
            - type: string
            - type: 'null'
        mpaa:
          anyOf:
            - type: string
            - type: 'null'
        top250_position:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - $ref: '#/components/schemas/KinopoiskRating'
            - type: 'null'
        box_office:
          anyOf:
            - $ref: '#/components/schemas/KinopoiskBoxOffice'
            - type: 'null'
        directors:
          items:
            $ref: '#/components/schemas/KinopoiskPersonRef'
          type: array
          default: []
        writers:
          items:
            $ref: '#/components/schemas/KinopoiskPersonRef'
          type: array
          default: []
        producers:
          items:
            $ref: '#/components/schemas/KinopoiskPersonRef'
          type: array
          default: []
        operators:
          items:
            $ref: '#/components/schemas/KinopoiskPersonRef'
          type: array
          default: []
        composers:
          items:
            $ref: '#/components/schemas/KinopoiskPersonRef'
          type: array
          default: []
        designers:
          items:
            $ref: '#/components/schemas/KinopoiskPersonRef'
          type: array
          default: []
        editors:
          items:
            $ref: '#/components/schemas/KinopoiskPersonRef'
          type: array
          default: []
        actors:
          items:
            $ref: '#/components/schemas/KinopoiskPersonRef'
          type: array
          default: []
        awards:
          items:
            $ref: '#/components/schemas/KinopoiskAward'
          type: array
          default: []
        world_premiere:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - type
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    KinopoiskRating:
      properties:
        '@type':
          type: string
          default: KinopoiskRating
        kinopoisk:
          anyOf:
            - $ref: '#/components/schemas/KinopoiskRatingValue'
            - type: 'null'
        imdb:
          anyOf:
            - $ref: '#/components/schemas/KinopoiskRatingValue'
            - type: 'null'
        russian_critics:
          anyOf:
            - $ref: '#/components/schemas/KinopoiskRatingValue'
            - type: 'null'
        worldwide_critics:
          anyOf:
            - $ref: '#/components/schemas/KinopoiskCriticsRating'
            - type: 'null'
      type: object
    KinopoiskBoxOffice:
      properties:
        '@type':
          type: string
          default: KinopoiskBoxOffice
        budget:
          anyOf:
            - type: integer
            - type: 'null'
        marketing:
          anyOf:
            - type: integer
            - type: 'null'
        usa:
          anyOf:
            - type: integer
            - type: 'null'
        russia:
          anyOf:
            - type: integer
            - type: 'null'
        world:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    KinopoiskPersonRef:
      properties:
        '@type':
          type: string
          default: KinopoiskPersonRef
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        original_name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    KinopoiskAward:
      properties:
        '@type':
          type: string
          default: KinopoiskAward
        award:
          type: string
        slug:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: integer
            - type: 'null'
        nomination:
          anyOf:
            - type: string
            - type: 'null'
        is_win:
          type: boolean
          default: false
      type: object
      required:
        - award
    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
    KinopoiskRatingValue:
      properties:
        '@type':
          type: string
          default: KinopoiskRatingValue
        value:
          anyOf:
            - type: number
            - type: 'null'
        count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    KinopoiskCriticsRating:
      properties:
        '@type':
          type: string
          default: KinopoiskCriticsRating
        value:
          anyOf:
            - type: number
            - type: 'null'
        percent:
          anyOf:
            - type: integer
            - type: 'null'
        count:
          anyOf:
            - type: integer
            - type: 'null'
        positive_count:
          anyOf:
            - type: integer
            - type: 'null'
        negative_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````