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

{
    "id": 24968,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24968?format=api",
    "title": "Il nemico invisibile",
    "original_title": "Charlie Chan in London",
    "year": 1934,
    "date_published": "1934-09-12",
    "duration": 79,
    "description": "Charlie visits a wealthy country home in England. Suspects in the murder range from a housekeeper, to a stableman, to a lawyer.",
    "long_description": "After receiving congratulations from the Home Secretary for solving his most recent case, Charlie is sought out by Pamela Gray, a beautiful but desperate young socialite whose brother Paul awaits execution for the murder of a weapons inventor. She is so convinced of his innocence that she becomes distraught when she overhears Neil Howard, her brother's lawyer and her fiancee, confide to the detective his belief in his client's guilt. Angered at this disclosure, she returns his ring and breaks off the engagement. Although the execution will take place in 65 hours, Charlie pledges to expose the murderer. All potential suspects are reassembled in the country mansion of family friend Geoffrey Richmond, where the murder took place, as Charlie tries to expose the real murderer before time runs out.",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 1832,
    "metascore": null,
    "budget": 100000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 42,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTY2MDg3MjQ0Nl5BMl5BanBnXkFtZTgwNDQzNzQ0MjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alan Mowbray",
        "David Torrence",
        "Douglas Walton",
        "Drue Leyton",
        "E.E. Clive",
        "Elsa Buchanan",
        "George Barraud",
        "John Rogers",
        "Madge Bellamy",
        "Mona Barrie",
        "Murray Kinnell",
        "Paul England",
        "Ray Milland",
        "Walter Johnson",
        "Warner Oland"
    ],
    "directors": [
        "Eugene Forde"
    ],
    "writers": [
        "Earl Derr Biggers",
        "Philip MacDonald"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Mystery"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fox Film Corporation"
}