Skip to main content
POST
/
api
/
kinopoisk
/
films
/kinopoisk/films
curl --request POST \
  --url https://api.anysite.io/api/kinopoisk/films \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "film": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "type": "<string>",
    "url": "<string>",
    "@type": "@kinopoisk_film",
    "name": "<string>",
    "original_name": "<string>",
    "year": 123,
    "description": "<string>",
    "short_description": "<string>",
    "tagline": "<string>",
    "image": "<string>",
    "genres": [],
    "countries": [],
    "duration": 123,
    "age_restriction": "<string>",
    "mpaa": "<string>",
    "top250_position": 123,
    "review_count": 123,
    "rating": {
      "@type": "@kinopoisk_rating",
      "kinopoisk": {
        "@type": "@kinopoisk_rating_value",
        "value": 123,
        "count": 123
      },
      "imdb": {
        "@type": "@kinopoisk_rating_value",
        "value": 123,
        "count": 123
      },
      "russian_critics": {
        "@type": "@kinopoisk_rating_value",
        "value": 123,
        "count": 123
      },
      "worldwide_critics": {
        "@type": "@kinopoisk_critics_rating",
        "value": 123,
        "percent": 123,
        "count": 123,
        "positive_count": 123,
        "negative_count": 123
      }
    },
    "box_office": {
      "@type": "@kinopoisk_box_office",
      "budget": 123,
      "marketing": 123,
      "usa": 123,
      "russia": 123,
      "world": 123
    },
    "directors": [],
    "writers": [],
    "producers": [],
    "operators": [],
    "composers": [],
    "designers": [],
    "editors": [],
    "actors": [],
    "awards": [],
    "world_premiere": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
film
string
required

Kinopoisk movie/series ID (e.g. '435') or full URL

Minimum string length: 1
Examples:

"435"

"https://www.kinopoisk.ru/film/435/"

"https://www.kinopoisk.ru/series/464963/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
type
string
required
url
string
required
@type
string
default:@kinopoisk_film
name
string | null
original_name
string | null
year
integer | null
description
string | null
short_description
string | null
tagline
string | null
image
string | null
genres
string[]
countries
string[]
duration
integer | null
age_restriction
string | null
mpaa
string | null
top250_position
integer | null
review_count
integer | null
rating
KinopoiskRating · object
box_office
KinopoiskBoxOffice · object
directors
KinopoiskPersonRef · object[]
writers
KinopoiskPersonRef · object[]
producers
KinopoiskPersonRef · object[]
operators
KinopoiskPersonRef · object[]
composers
KinopoiskPersonRef · object[]
designers
KinopoiskPersonRef · object[]
editors
KinopoiskPersonRef · object[]
actors
KinopoiskPersonRef · object[]
awards
KinopoiskAward · object[]
world_premiere
string | null