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

{
    "id": 21376,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21376?format=api",
    "title": "The Sin Ship",
    "original_title": "The Sin Ship",
    "year": 1931,
    "date_published": "1931-04-18",
    "duration": 65,
    "description": "A lecherous ship captain becomes spiritually changed by a female passenger, not realizing she and her \"minister\" husband are really bank robbers.",
    "long_description": "A minister and his wife miss their steamer, so they manage to gain passage on the gruff, middle-aged Captain Sam McVey's ship. But McVey isn't willing to let them ride entirely for free and attempts to force himself on the minister's beautiful wife when he gets her alone in his cabin \"for tea.\" The wife rebuffs his advances and her strong words cause a change to come over him, a desire to be decent. Little does McVey know that the seemingly decent couple are not who they seem. They're Smiley Marsden and Frisco Kitty, bank robbers on the run. But Frisco Kitty finds herself being changed by the captain as well, and becomes ashamed of her ways. What will happen when the truth comes out?",
    "avg_vote": "5.5",
    "imdb_score": "5.5",
    "votes": 245,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 20,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWQ2YWE4YzUtZWNkMy00MjY2LTk5OTctMDQ0OGNhYzE2NzRkXkEyXkFqcGdeQXVyNDcxNDkxMjA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alan Roscoe",
        "Hugh Herbert",
        "Ian Keith",
        "Louis Wolheim",
        "Mary Astor",
        "Russ Powell"
    ],
    "directors": [
        "Louis Wolheim"
    ],
    "writers": [
        "Agnes Brand Leahy",
        "Keene Thompson"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Radio Pictures"
}