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

{
    "id": 24852,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24852?format=api",
    "title": "Nel paese delle meraviglie",
    "original_title": "Babes in Toyland",
    "year": 1934,
    "date_published": "1934-12-14",
    "duration": 77,
    "description": "Opposing the evil Barnaby, Ollie Dee and Stanley Dum try and fail to pay-off Mother Peep's mortgage and mislead his attempts to marry Little Bo. Enraged, Barnaby's Bogeymen are set on Toyland.",
    "long_description": "Ollie Dee and Stanley Dum try to borrow money from their employer, the toymaker, to pay off the mortgage on Mother Peep's shoe and keep it and Little Bo Peep from the clutches of the evil Barnaby. When that fails, they trick Barnaby into marrying Stanley Dum instead of Bo Peep. Enraged, Barnaby unleashes the bogeymen from their caverns to destroy Toyland.",
    "avg_vote": "7.2",
    "imdb_score": "7.2",
    "votes": 6024,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 63,
    "reviews_from_critics": 26,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZTYxNzA3ZDUtYTM2MC00MmM5LThmNzUtMDgzZWJmYjcyNTc1XkEyXkFqcGdeQXVyNjMwMjk0MTQ@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Charlotte Henry",
        "Felix Knight",
        "Florence Roberts",
        "Henry Brandon",
        "Oliver Hardy",
        "Stan Laurel",
        "Virginia Karns"
    ],
    "directors": [
        "Charley Rogers",
        "Gus Meins"
    ],
    "writers": [
        "Frank Butler",
        "Nick Grinde"
    ],
    "genres": [
        "Comedy",
        "Family",
        "Fantasy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Hal Roach Studios"
}