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

{
    "id": 19312,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19312?format=api",
    "title": "La danzatrice rossa",
    "original_title": "The Red Dance",
    "year": 1928,
    "date_published": "1928-12-02",
    "duration": 103,
    "description": "Note: Contains Spoilers  The story, set in Russia at the time of the Bolshevik Revolution, focuses on the relationship between three characters: Tasia (Dolores del Rio), a peasant girl; ...",
    "long_description": "Note: Contains Spoilers The story, set in Russia at the time of the Bolshevik Revolution, focuses on the relationship between three characters: Tasia (Dolores del Rio), a peasant girl; Grand Duke Eugene (Charles Farrell); and Ivan Petroff (Ivan Linow).Tasia has revolutionary sentiments which are strengthened by seeing the suffering of her father imprisoned by the Czarist authorities. She attracts the attention of Ivan Petroff, but evades an arranged marriage with him, to the relief of both (Ivan, hung over from prenuptial celebrations, misses the ceremony).While revolutionary agents stir up class hatred among the populace, Tasia meets Grand Duke Eugene, a nobleman who genuinely wishes to address the problems of the people. They fall in love, aware of the great social gulf dividing them (Eugene is betrothed to a noblewoman).The revolution begins (the \"Red Dance\" is described in an intertitle as the name for a bloody and irresponsible movement to grab power by revolutionaries not ...",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 103,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjA4MTgzODM0M15BMl5BanBnXkFtZTgwMTAwMTgxMjE@._V1_UY268_CR11,0,182,268_AL_.jpg",
    "actors": [
        "Andrés de Segurola",
        "Boris Charsky",
        "Charles Farrell",
        "Demetrius Alexis",
        "Dolores del Rio",
        "Dorothy Revier",
        "Ivan Linow"
    ],
    "directors": [
        "Raoul Walsh"
    ],
    "writers": [
        "Eleanor Browne",
        "Henry Leyford Gates"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fox Film Corporation"
}