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

{
    "id": 24951,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24951?format=api",
    "title": "The Captain Hates the Sea",
    "original_title": "The Captain Hates the Sea",
    "year": 1934,
    "date_published": "1934-11-02",
    "duration": 93,
    "description": "A cruise ship heads south from L.A. with a variety of passengers - a reporter, a P.I., crooks, a general etc.",
    "long_description": "Alcoholic newspaperman Steve Bramley boards the San Capeador for a restful cruise, hoping to quit drinking and begin writing a book. Also on board are Steve's friend Schulte, a private detective hoping to nab criminal Danny Checkett with a fortune in stolen bonds. Steve begins drinking, all the while observing the various stories of other passengers on board, several of whom turn out not to be who they seem to be.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 659,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 13,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMGIwMGRlY2MtMDVkMi00ZThhLWIxYzgtZTY5MGJkYmJhY2M5XkEyXkFqcGdeQXVyMTcyODY2NDQ@._V1_UY268_CR82,0,182,268_AL_.jpg",
    "actors": [
        "Alison Skipworth",
        "Claude Gillingwater",
        "Donald Meek",
        "Emily Fitzroy",
        "Fred Keating",
        "Helen Vinson",
        "John Gilbert",
        "John Wray",
        "Leon Errol",
        "Luis Alberni",
        "Tala Birell",
        "Victor McLaglen",
        "Walter Catlett",
        "Walter Connolly",
        "Wynne Gibson"
    ],
    "directors": [
        "Lewis Milestone"
    ],
    "writers": [
        "Wallace Smith"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Columbia Pictures"
}