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

{
    "id": 21225,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21225?format=api",
    "title": "Outward Bound",
    "original_title": "Outward Bound",
    "year": 1930,
    "date_published": "1930-11-29",
    "duration": 83,
    "description": "Later remade as \"Between Two Worlds.\"",
    "long_description": "Henry and Ann are a young loving couple who have made a secret pact which they plan on executing at midnight. It involves stowing away on a passenger ship and leaving behind their beloved dog Laddy, a move they consider bittersweet. They seem somewhat apprehensive concerning their pact. Aboard the ship, a young man named Tom Prior, who seems to like his booze a little too much, has a feeling that something about the sailing is rather queer as everyone to who he speaks seems not to remember with who they are meeting or where they are going. The only exception is elderly socialite Mrs. Cliveden-Banks, who is off to meet her husband, Bunny. The only other passengers aboard are Catholic priest Reverend William Duke, wealthy business owner Mr. Lingley for who Tom used to work, and an uneducated working class elderly woman named Mrs. Midget. The only crew member is Scrubby, the steward. Tom eventually deciphers the nature of their trip, quicker than most that have taken it before have done....",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 454,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 19,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNjIxNmUxYjQtOWZjYy00MDE1LWJlMWItZjdmZjIzZTlhMjYzXkEyXkFqcGdeQXVyMTcyODY2NDQ@._V1_UY268_CR80,0,182,268_AL_.jpg",
    "actors": [
        "Alec B. Francis",
        "Alison Skipworth",
        "Beryl Mercer",
        "Douglas Fairbanks Jr.",
        "Dudley Digges",
        "Helen Chandler",
        "Leslie Howard",
        "Lyonel Watts",
        "Montagu Love"
    ],
    "directors": [
        "Ray Enright",
        "Robert Milton"
    ],
    "writers": [
        "J. Grubb Alexander",
        "Sutton Vane"
    ],
    "genres": [
        "Drama",
        "Fantasy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}