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

{
    "id": 21778,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21778?format=api",
    "title": "La via del male",
    "original_title": "Dance, Fools, Dance",
    "year": 1931,
    "date_published": "1931-02-07",
    "duration": 80,
    "description": "After the death of her father and loss of the family fortune, Bonnie gets a job as a cub reporter while her brother becomes involved in bootlegging.",
    "long_description": "After her father Stanley Jordan loses his wealth in market, Bonnie goes to work as a cub reporter. Her brother Rodney is the wheel man in a gangland massacre. Bert, a reporter on Bonnie's paper, is murdered while investigating. Bonnie gets to know gang leader Jake Luva and learns how the gang works and that her brother is involved. By the time it's over her wealthy friend Bob sees how wonderful she is and falls in love with her for good.",
    "avg_vote": "6.2",
    "imdb_score": "6.2",
    "votes": 812,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 31,
    "reviews_from_critics": 12,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMGUwOTJkYTctNjVkMi00MjM4LWIyODAtNzM4MjQ0ZTNmMzhlXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Clark Gable",
        "Cliff Edwards",
        "Earle Foxe",
        "Hale Hamilton",
        "Joan Crawford",
        "Joan Marsh",
        "Lester Vail",
        "Natalie Moorhead",
        "Purnell Pratt",
        "Russell Hopton",
        "William Bakewell",
        "William Holden"
    ],
    "directors": [
        "Harry Beaumont"
    ],
    "writers": [
        "Aurania Rouverol"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}