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

{
    "id": 21079,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21079?format=api",
    "title": "Piccolo Cesare",
    "original_title": "Little Caesar",
    "year": 1931,
    "date_published": "1963-08-02",
    "duration": 79,
    "description": "A small-time criminal moves to a big city to seek bigger fortune.",
    "long_description": "Rico is a small-time hood who knocks off gas stations for whatever he can take. He heads east and signs up with Sam Vettori's mob. A New Year's Eve robbery at Little Arnie Lorch's casino results in the death of the new crime commissioner Alvin McClure. Rico's good friend Joe Massara, who works at the club as a professional dancer, works as the gang's lookout man and wants out of the gang. Rico is ambitious and eventually takes over Vettori's gang; he then moves up to the next echelon pushing out Diamond Pete Montana. When he orders Joe to dump his girlfriend Olga and re-join the gang, Olga decides there's only one way out for them.",
    "avg_vote": "7.3",
    "imdb_score": "7.3",
    "votes": 11951,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 102,
    "reviews_from_critics": 71,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYzE4ZTI3MDQtMTE5MS00MzQxLTkwZGMtYWM5MjU2MzE3OTk5XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY268_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Armand Kaliz",
        "Douglas Fairbanks Jr.",
        "Edward G. Robinson",
        "George E. Stone",
        "Glenda Farrell",
        "Maurice Black",
        "Nicholas Bela",
        "Ralph Ince",
        "Sidney Blackmer",
        "Stanley Fields",
        "Thomas E. Jackson",
        "William Collier Jr."
    ],
    "directors": [
        "Mervyn LeRoy"
    ],
    "writers": [
        "Francis Edward Faragoh",
        "W.R. Burnett"
    ],
    "genres": [
        "Action",
        "Crime",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}