### Example Request for Possible Values by Field Source: https://poiskkino.dev/documentation Get a list of possible values for a specific field related to movies. This is useful for understanding available filter options. ```HTTP https://api.poiskkino.dev/v1/movie/possible-values-by-field ``` -------------------------------- ### Example Request for Movie Search Source: https://poiskkino.dev/documentation Perform a search for movies. This endpoint allows for various search criteria to be applied. ```HTTP https://api.poiskkino.dev/v1.4/movie/search ``` -------------------------------- ### Example Request for Random Movie Source: https://poiskkino.dev/documentation Retrieve a random movie from the database. This endpoint does not require any specific query parameters. ```HTTP https://api.poiskkino.dev/v1.4/movie/random ``` -------------------------------- ### Example Request for Boolean Field (isSeries) Source: https://poiskkino.dev/documentation Filter results to include or exclude series. Use 'true' to get series and 'false' to get movies. ```HTTP isSeries=true ``` ```HTTP isSeries=false ``` -------------------------------- ### Example Request for Single Date Source: https://poiskkino.dev/documentation Retrieve movies released on a specific date for their Russian premiere. Use the dd.mm.yyyy format. ```HTTP premiere.russia=dd.mm.yyyy ``` -------------------------------- ### Example Request for Single Genre Source: https://poiskkino.dev/documentation Retrieve movies belonging to a single specified genre. The genre name should be provided as a string. ```HTTP genres.name=драма ``` -------------------------------- ### Example Request for Multiple Genres (String) Source: https://poiskkino.dev/documentation Retrieve movies belonging to multiple specified genres. Each genre name is provided as a separate query parameter. ```HTTP genres.name=криминал&genres.name=драма ``` -------------------------------- ### Example Request for Movies (v1.5) Source: https://poiskkino.dev/documentation Retrieve a list of movies using the v1.5 API version. This endpoint may have different parameters or data than other versions. ```HTTP https://api.poiskkino.dev/v1.5/movie ``` -------------------------------- ### GET /v1.4/movie/{id} Source: https://poiskkino.dev/documentation Retrieves detailed information about a specific movie or series by its unique identifier. ```APIDOC ## GET /v1.4/movie/{id} ### Description Retrieves detailed information about a specific movie or series by its unique identifier. ### Method GET ### Endpoint https://api.poiskkino.dev/v1.4/movie/{id} ### Parameters #### Path Parameters - **id** (string) - Required - The unique identifier of the movie or series. ### Request Example GET https://api.poiskkino.dev/v1.4/movie/123 Headers: X-API-KEY: ``` -------------------------------- ### Example Request for Multiple Genres (Include) Source: https://poiskkino.dev/documentation Retrieve movies that belong to multiple specified genres. Use the '+' operator (URL-encoded as %2B) for each included genre. ```HTTP genres.name=+драма&genres.name=+криминал ``` -------------------------------- ### Example Movie Request by Year and Genre Source: https://poiskkino.dev/documentation Construct a request to retrieve movies from a specific year and genre. Ensure parameters are correctly formatted in the query string. ```HTTP https://api.poiskkino.dev/v1.4/movie?year=2023&genres.name=криминал ``` -------------------------------- ### Example Request for Movie by ID Source: https://poiskkino.dev/documentation Retrieve a specific movie using its unique identifier. This request requires the movie ID in the URL path. ```HTTP https://api.poiskkino.dev/v1.4/movie/{id} ``` -------------------------------- ### Example Request for Multiple Years Source: https://poiskkino.dev/documentation Retrieve movies released in multiple specified years. Each year can be provided as a separate query parameter. ```HTTP year=2022&year=2023 ``` -------------------------------- ### Example Request for Movie Awards Source: https://poiskkino.dev/documentation Retrieve information about movie awards. This endpoint provides data related to film accolades. ```HTTP https://api.poiskkino.dev/v1.4/movie/awards ``` -------------------------------- ### Example Request for Date Range Source: https://poiskkino.dev/documentation Retrieve movies released within a specific date range for their Russian premiere. Dates should be in dd.mm.yyyy format. ```HTTP premiere.russia=dd.mm.yyyy-dd.mm.yyyy ``` -------------------------------- ### Example Movie Request by Rating Source: https://poiskkino.dev/documentation Construct a request to retrieve movies with a rating above a certain threshold. The rating parameter supports range queries. ```HTTP https://api.poiskkino.dev/v1.4/movie?rating.imdb=8-10 ``` -------------------------------- ### Example Request for Specific Genre (Exclude Another) Source: https://poiskkino.dev/documentation Retrieve movies that include a specific genre while excluding another. Use '+' for inclusion and '!' (URL-encoded as %21) for exclusion. ```HTTP genres.name=+драма&genres.name=!криминал ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.