Skip to main content
POST
/
api
/
kinopoisk
/
films
/
top250
/kinopoisk/films/top250
curl --request POST \
  --url https://api.anysite.io/api/kinopoisk/films/top250 \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 125,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "type": "<string>",
    "url": "<string>",
    "@type": "@kinopoisk_top250_item",
    "position": 123,
    "name": "<string>",
    "original_name": "<string>",
    "year": 123,
    "rating": 123,
    "rating_count": 123,
    "genres": [],
    "countries": [],
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of titles to return

Required range: 1 <= x <= 250
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_top250_item
position
integer | null
name
string | null
original_name
string | null
year
integer | null
rating
number | null
rating_count
integer | null
genres
string[]
countries
string[]
image
string | null