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/18795?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 18795,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18795?format=api",
    "title": "I cosacchi",
    "original_title": "The Cossacks",
    "year": 1928,
    "date_published": "1928-06-23",
    "duration": 92,
    "description": "A peace-loving Cossack chooses to prove himself in battle when his village and childhood sweetheart label him a coward.",
    "long_description": "Lukashka is the son of a fierce Cossack chief, but he would rather relax in the woods or flirt with his sweetheart Maryana than go to battle with the neighboring Turks. However, his life changes when he is publicly humiliated by his fellow villagers and rejected by Maryana, who regard him as a coward. Overnight, Lukashka proves himself a capable warrior to prove them all wrong, impressing his father and Maryana; however, when she tries to apologize for her cruel treatment of him, he ignores her, even though he is still in love with her. Matters get complicated when the Tsar's son comes to village in search of a bride and sets his eyes on Maryana. And then there's still the Turks to contend with...",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 615,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 11,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYWU4YTY0NmUtYmEzYS00YTE2LWFlMjgtZjQ5ZGUxODk2ZDExXkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Dale Fuller",
        "Ernest Torrence",
        "John Gilbert",
        "Joseph Marievsky",
        "Josephine Borio",
        "Mary Alden",
        "Nils Asther",
        "Paul Hurst",
        "Renée Adorée",
        "Yorke Sherwood"
    ],
    "directors": [
        "Clarence Brown",
        "George W. Hill"
    ],
    "writers": [
        "Frances Marion",
        "John Colton"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}