This endpoint gives access to detailed movie information from the OCMovies API.

The OCMovies API is a RESTful API built using Django Rest Framework with the objective to support educational projects through a local execution of the server. It uses data from more than 80k movies from de IMDb website.

Not all the detailed data is present in the title list endpoint available here. Only the detailed information provided on the current endpoint gives access to e.g. the description, long description or buget and income info about the movie.

If you need to get a full list of available genres, refer to the genres endpoint.

Please, refer to the title list endpoint to get various search or sort capabilities, thereby allowing to efficiently identify the movies you want to look at.

GET /api/v1/titles/15361?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 15361,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15361?format=api",
    "title": "Sciopero",
    "original_title": "Stachka",
    "year": 1925,
    "date_published": "1925-04-28",
    "duration": 82,
    "description": "A group of oppressed factory workers go on strike in pre-revolutionary Russia.",
    "long_description": "In Russia's factory region during Czarist rule, there's restlessness and strike planning among workers; management brings in spies and external agents. When a worker hangs himself after being falsely accused of thievery, the workers strike. At first, there's excitement in workers' households and in public places as they develop their demands communally. Then, as the strike drags on and management rejects demands, hunger mounts, as does domestic and civic distress. Provocateurs recruited from the lumpen and in league with the police and the fire department bring problems to the workers; the spies do their dirty work; and, the military arrives to liquidate strikers.",
    "avg_vote": "7.6",
    "imdb_score": "7.6",
    "votes": 7005,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 39,
    "reviews_from_critics": 33,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzRmZjY3MTQtMTBmYS00MDJlLWJmMWUtZjE0YWMxNTVkMTNkXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Aleksandr Antonov",
        "Anatoliy Kuznetsov",
        "Boris Yurtsev",
        "Grigoriy Aleksandrov",
        "I. Ivanov",
        "Ivan Klyukvin",
        "M. Mamin",
        "Maksim Shtraukh",
        "Mikhail Gomorov",
        "Vera Yanukova",
        "Vladimir Uralskiy",
        "Yudif Glizer"
    ],
    "directors": [
        "Sergei M. Eisenstein"
    ],
    "writers": [
        "Grigoriy Aleksandrov",
        "Sergei M. Eisenstein"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Soviet Union"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "1-ya Goskino Fabrika"
}