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

{
    "id": 14770,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/14770?format=api",
    "title": "The Chechahcos",
    "original_title": "The Chechahcos",
    "year": 1923,
    "date_published": "1924-05-15",
    "duration": 87,
    "description": "A fire engulfs a shipload of prospectors and adventurers making their way to Alaska. In the confusion, Mrs. Stanlaw is separated from her young daughter, who ends up in the care of '...",
    "long_description": "A fire engulfs a shipload of prospectors and adventurers making their way to Alaska. In the confusion, Mrs. Stanlaw is separated from her young daughter, who ends up in the care of 'Horseshoe' Riley and Bob Dexter. Mrs. Stanlaw is told by gambler Richard Steele that her daughter is lost. Flash forward 10 years; Riley and Dexter are running a prosperous gold mine, and Steele has just come to town to run the local saloon. Ruth, meanwhile, has grown into a beautiful young woman, and finds herself falling in love with Dexter. Between Steele sending his henchman Pierre to kill Dexter, Dexter discovering that Steele tried to kill him on the ship, and the reunion of Mrs. Stanlaw and Ruth, there's plenty of drama even without the dramatic Alaskan scenery, including the majestic glaciers.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 216,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZWViZWVlMDgtNGZlNC00MGY4LWFkODEtNDJjMzNjNWEzZTBjXkEyXkFqcGdeQXVyNTEyODQ1NjM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Albert Van Antwerp",
        "Alexis B. Luce",
        "Baby Margie",
        "Eva Gordon",
        "Gladys Johnson",
        "William Dills"
    ],
    "directors": [
        "Lewis H. Moomaw"
    ],
    "writers": [
        "Lewis H. Moomaw"
    ],
    "genres": [
        "Adventure",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Alaska Moving Picture Corp."
}