Search and parse content from Kodik
POST
/api/v1/parse/search
const url = 'http://localhost:8080/api/v1/parse/search';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"title":"example","kinopoiskId":"example","imdbId":"example","shikimoriId":"example","decodeLinks":true}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:8080/api/v1/parse/search \ --header 'Content-Type: application/json' \ --data '{ "title": "example", "kinopoiskId": "example", "imdbId": "example", "shikimoriId": "example", "decodeLinks": true }'Request Body required
Section titled “Request Body required ” Media type application/json
object
title
string
kinopoiskId
string
imdbId
string
shikimoriId
string
decodeLinks
boolean
Example generated
{ "title": "example", "kinopoiskId": "example", "imdbId": "example", "shikimoriId": "example", "decodeLinks": true}Responses
Section titled “ Responses ”OK
Media type */*
Array<object>
object
id
integer format: int64
kodikId
string
type
string
title
string
titleOrig
string
otherTitle
string
year
integer format: int32
kinopoiskId
string
imdbId
string
shikimoriId
string
worldartLink
string
screenshots
Array<string>
materialData
object
key
additional properties
kinopoiskRating
number format: double
imdbRating
number format: double
shikimoriRating
number format: double
genres
string
blockedCountries
string
camrip
boolean
lgbt
boolean
lastSeason
integer format: int32
lastEpisode
integer format: int32
episodesCount
integer format: int32
quality
string
createdAt
string format: date-time
updatedAt
string format: date-time