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

{
    "id": 17540,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17540?format=api",
    "title": "Gloria",
    "original_title": "What Price Glory",
    "year": 1926,
    "date_published": "1926-11-23",
    "duration": 116,
    "description": "U.S. Marine sergeants Quirt and Flagg are inveterate romantic rivals on peacetime assignments in China and the Philippines. In 1917, W.W. I brings them to France, where Flagg, now a captain...",
    "long_description": "U.S. Marine sergeants Quirt and Flagg are inveterate romantic rivals on peacetime assignments in China and the Philippines. In 1917, W.W. I brings them to France, where Flagg, now a captain, takes up with flirtatious Charmaine, inn-keeper's daughter. Of course, Quirt has to arrive and spoil his fun. But the harsh realities of war and the threat of a shotgun marriage give the two men a common cause...",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 349,
    "metascore": null,
    "budget": 360000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 8,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYWY2MTkwNzUtYjkwYy00YjA1LTgzOTItZmY1ZDMyMGE5ZTExXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR11,0,182,268_AL_.jpg",
    "actors": [
        "August Tollaire",
        "Barry Norton",
        "Dolores del Rio",
        "Edmund Lowe",
        "Elena Jurado",
        "Leslie Fenton",
        "Mathilde Comont",
        "Patrick Rooney",
        "Phyllis Haver",
        "Sammy Cohen",
        "Ted McNamara",
        "Victor McLaglen",
        "William V. Mong"
    ],
    "directors": [
        "Raoul Walsh"
    ],
    "writers": [
        "Malcolm Stuart Boylan",
        "Maxwell Anderson"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fox Film Corporation"
}