Skip to main content
POST
/
api
/
kinopoisk
/
persons
/kinopoisk/persons
curl --request POST \
  --url https://api.anysite.io/api/kinopoisk/persons \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "person": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "url": "<string>",
    "@type": "@kinopoisk_person",
    "name": "<string>",
    "original_name": "<string>",
    "gender": "<string>",
    "image": "<string>",
    "job_titles": [],
    "birth_date": "<string>",
    "death_date": "<string>",
    "age": 123,
    "birth_place": "<string>",
    "death_place": "<string>",
    "height": 123,
    "zodiac_sign": "<string>",
    "main_genres": [],
    "filmography_year_start": 123,
    "filmography_year_end": 123,
    "roles": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
person
string
required

Kinopoisk person ID (e.g. '9144') or full person URL

Minimum string length: 1
Examples:

"9144"

"https://www.kinopoisk.ru/name/9144/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
url
string
required
@type
string
default:@kinopoisk_person
name
string | null
original_name
string | null
gender
string | null
image
string | null
job_titles
string[]
birth_date
string | null
death_date
string | null
age
integer | null
birth_place
string | null
death_place
string | null
height
integer | null
zodiac_sign
string | null
main_genres
string[]
filmography_year_start
integer | null
filmography_year_end
integer | null
roles
KinopoiskPersonRole · object[]