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

{
    "id": 22689,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22689?format=api",
    "title": "Luana la vergine sacra",
    "original_title": "Bird of Paradise",
    "year": 1932,
    "date_published": "1932-08-12",
    "duration": 80,
    "description": "A native girl falls for a visitor to her island, but she's chosen to be sacrificed to the volcano god.",
    "long_description": "A young man falls overboard and is saved by a beautiful Polynesian girl. They fall in love, but their idyll is smashed when the local volcano begins to erupt. The man discovers that the local custom is to sacrifice a young woman to the volcanic gods. They try to escape but realize that \"east is east and west is west, and never the twain shall meet.\"",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 1117,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 31,
    "reviews_from_critics": 27,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZmY3ZWI3MDEtZmY2NC00OGU4LTk5ZjQtODA2ZDI5OWFhZjMyXkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Agostino Borgato",
        "Arnold Gray",
        "Bert Roach",
        "Dolores del Rio",
        "Joel McCrea",
        "John Halliday",
        "Lon Chaney Jr.",
        "Napoleon Pukui",
        "Reginald Simpson",
        "Richard 'Skeets' Gallagher",
        "Sofia Ortega",
        "Wade Boteler"
    ],
    "directors": [
        "King Vidor"
    ],
    "writers": [
        "Richard Walton Tully",
        "Wells Root"
    ],
    "genres": [
        "Adventure",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Hawaiian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Radio Pictures"
}