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

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search query (movie, series or person name)

Minimum string length: 1
count
integer
required

Max number of results to return

Required range: x >= 1
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_search_result
name
string | null
original_name
string | null
year
integer | null
rating
number | null
rating_count
integer | null
image
string | null
info
string | null