Skip to main content
POST
/
api
/
kinopoisk
/
films
/
reviews
/kinopoisk/films/reviews
curl --request POST \
  --url https://api.anysite.io/api/kinopoisk/films/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "film": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "date",
  "status": "all"
}
'
[
  {
    "id": 123,
    "@type": "@kinopoisk_review",
    "type": "<string>",
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "author_id": 123,
    "author_url": "<string>",
    "date": "<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 or full URL

Minimum string length: 1
Examples:

"435"

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

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:date

Review ordering

Available options:
date,
rating
status
enum<string>
default:all

Filter by review sentiment

Available options:
all,
good,
bad,
neutral

Response

Successful Response

id
integer
required
@type
string
default:@kinopoisk_review
type
string | null
title
string | null
text
string | null
author
string | null
author_id
integer | null
author_url
string | null
date
string | null