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

{
    "id": 24097,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24097?format=api",
    "title": "Headline Shooter",
    "original_title": "Headline Shooter",
    "year": 1933,
    "date_published": "1933-07-28",
    "duration": 61,
    "description": "The adventures of a wayward newsreel cameraman.",
    "long_description": "Roguish, cynical newsreel cameraman Bill Allen usually has a dame in one hand and a hip flask in the other, yet catches breaking stories and disasters of all sorts on film. When he meets newspaper columnist Jane Mallory, mutual attraction results; but she's too smart to fall for him (or is she?) unless he reforms (but does she really want him to?). Includes exciting stock footage of fire, flood and earthquake.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 146,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 5,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjRmMGMwYzAtNmYxNi00NTk0LTg4YzctMGQzNmQ0OGY0MTE1XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Betty Furness",
        "Dorothy Burgess",
        "Frances Dee",
        "Franklin Pangborn",
        "Gregory Ratoff",
        "Hobart Cavanaugh",
        "Jack La Rue",
        "June Brewster",
        "Ralph Bellamy",
        "Robert Benchley",
        "Wallace Ford",
        "William Gargan"
    ],
    "directors": [
        "Otto Brower"
    ],
    "writers": [
        "Agnes Christine Johnston",
        "Allen Rivkin"
    ],
    "genres": [
        "Adventure",
        "Crime",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Radio Pictures"
}