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

{
    "id": 23583,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23583?format=api",
    "title": "Il tredicesimo invitato",
    "original_title": "The Thirteenth Guest",
    "year": 1932,
    "date_published": "1932-08-09",
    "duration": 69,
    "description": "Murder of a woman sparks a search for a killer.",
    "long_description": "13 years before the movie opens, there was a dinner party, at which the 13th guest failed to show up. The master of the manner has died, and left the bulk of his estate to this 13th guest, but nobody knows who that is. Now someone is murdering the remaining guests, and placing their dead bodies at the table, in the same seat they had occupied 13 years before.",
    "avg_vote": "5.8",
    "imdb_score": "5.8",
    "votes": 674,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 25,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BN2M3OWM1ZGYtMzVlNi00OWMwLThmODgtZGIwYjA1OTVkN2MyXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Crauford Kent",
        "Eddie Phillips",
        "Erville Alderson",
        "Ethel Wales",
        "Frances Rich",
        "Ginger Rogers",
        "J. Farrell MacDonald",
        "James Eagles",
        "Lyle Talbot",
        "Paul Hurst",
        "Phillips Smalley"
    ],
    "directors": [
        "Albert Ray"
    ],
    "writers": [
        "Armitage Trail",
        "Frances Hyland"
    ],
    "genres": [
        "Drama",
        "Mystery",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "M.H. Hoffman Inc."
}