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

{
    "id": 19843,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19843?format=api",
    "title": "Dinamite",
    "original_title": "Dynamite",
    "year": 1929,
    "date_published": "1929-12-13",
    "duration": 129,
    "description": "Wealthy Cynthia is in love with not-so-wealthy Roger, who is married to Marcia. The threesome is terribly modern about the situation, and Marcia will gladly divorce Roger if Cynthia agrees ...",
    "long_description": "Wealthy Cynthia is in love with not-so-wealthy Roger, who is married to Marcia. The threesome is terribly modern about the situation, and Marcia will gladly divorce Roger if Cynthia agrees to a financial settlement. But Cynthia's wealth is in jeopardy because her trust fund will expire if she is not married by a certain date. To satisfy that condition, Cynthia arranges to marry Hagon Derk, who is condemned to die for a crime he didn't commit. She pays him so he can provide for his little sister. But at the last minute, Derk is freed when the true criminal is discovered. Expecting to be a rich widow, Cynthia finds herself married to a man she doesn't know and doesn't want to.",
    "avg_vote": "7.0",
    "imdb_score": "7.1",
    "votes": 379,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 15,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzg0OGYzNzktMmQ0Ni00NGFiLTg3NjgtNjdiOGVmZDllNzQ4XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Barton Hepburn",
        "Charles Bickford",
        "Conrad Nagel",
        "Douglas Scott",
        "Henry Stockbridge",
        "Jane Keckley",
        "Joel McCrea",
        "Julia Faye",
        "Kay Johnson",
        "Leslie Fenton",
        "Muriel McCormac",
        "Robert Edeson",
        "Robert T. Haines",
        "Tyler Brooke",
        "William Holden"
    ],
    "directors": [
        "Cecil B. DeMille"
    ],
    "writers": [
        "Jeanie Macpherson",
        "John Howard Lawson"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}