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

{
    "id": 20081,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20081?format=api",
    "title": "L'onestà della signora Cheyney",
    "original_title": "The Last of Mrs. Cheyney",
    "year": 1929,
    "date_published": "1929-07-06",
    "duration": 94,
    "description": "There is a big charity function at the house of Mrs. Cheyney and a lot of society is present. With her rich husband, deceased, rich old Lord Elton and playboy Lord Arthur Dilling are both ...",
    "long_description": "There is a big charity function at the house of Mrs. Cheyney and a lot of society is present. With her rich husband, deceased, rich old Lord Elton and playboy Lord Arthur Dilling are both very interested in the mysterious Fay. Invited to the house of Mrs. Webley, Fay is again the center of attention for Arthur and Elton with her leaning towards stuffy old Elton. When Arthur sees Charles, Fay's Butler, lurking in the gardens, he remembers that Charles was a thief caught in Monte Carlo and he figures that Fay may be more interested in the pearls of Mrs. Webley, which she is. After Fay takes the pearls, but before she can toss them out the window, she is caught by Arthur who is very disappointed in how things are turning out.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 397,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 14,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzc1MjU1MDg3NV5BMl5BanBnXkFtZTgwMTE5NzM2MzE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Basil Rathbone",
        "Cyril Chadwick",
        "Frank Finch Smiles",
        "George Barraud",
        "George K. Arthur",
        "Hedda Hopper",
        "Herbert Bunston",
        "Madeline Seymour",
        "Maude Turner Gordon",
        "Moon Carroll",
        "Norma Shearer"
    ],
    "directors": [
        "Sidney Franklin"
    ],
    "writers": [
        "Frederick Lonsdale"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}