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

{
    "id": 22987,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22987?format=api",
    "title": "I demoni dell'aria",
    "original_title": "Hell Divers",
    "year": 1931,
    "date_published": "1932-01-16",
    "duration": 109,
    "description": "Story of rivalry between 2 Navy aircrewmen on and off duty.",
    "long_description": "Story of rivalry between 2 Navy aircrewmen on and off duty.",
    "avg_vote": "6.3",
    "imdb_score": "6.3",
    "votes": 509,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 11,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOWJhYzJhOTYtOGFkYi00ZWE2LTg0ZGItYzRiOTY1YmU3ZmFjXkEyXkFqcGdeQXVyNjQzNDI3NzY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alan Roscoe",
        "Clark Gable",
        "Cliff Edwards",
        "Conrad Nagel",
        "Dorothy Jordan",
        "Frank Conroy",
        "John Kelly",
        "John Miljan",
        "Landers Stevens",
        "Marie Prevost",
        "Marjorie Rambeau",
        "Reed Howes",
        "Virginia Bruce",
        "Wallace Beery"
    ],
    "directors": [
        "George W. Hill"
    ],
    "writers": [
        "Frank Wead",
        "Harvey Gates"
    ],
    "genres": [
        "Adventure",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}