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

{
    "id": 23396,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23396?format=api",
    "title": "Ride Him, Cowboy",
    "original_title": "Ride Him, Cowboy",
    "year": 1932,
    "date_published": "1932-08-27",
    "duration": 55,
    "description": "John Drury saves Duke, a wild horse accused of murder, and trains him. When he discovers that the real murderer, a bad guy known as The Hawk, is the town's leading citizen, Drury arrested on a fraudulent charge.",
    "long_description": "John Drury agrees to look for the outlaw known as the Hawk and Henry Simms volunteers to help him. But Simms is the Hawk and he leaves Drury on the desert to die. Simms then kills a man and plants John's harmonica at the scene. With the help of his horse Duke, John returns only to find that he is accused of murder and about to face the hanging Judge.",
    "avg_vote": "5.5",
    "imdb_score": "5.5",
    "votes": 561,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 17,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTY3Nzc1Njg5MF5BMl5BanBnXkFtZTgwMjcyMzEyMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Duke",
        "Frank Hagney",
        "Harry Gribbon",
        "Henry B. Walthall",
        "John Wayne",
        "Otis Harlan",
        "Ruth Hall"
    ],
    "directors": [
        "Fred Allen"
    ],
    "writers": [
        "Kenneth Perkins",
        "Scott Mason"
    ],
    "genres": [
        "Action",
        "Romance",
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Leon Schlesinger Studios"
}