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

{
    "id": 20960,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20960?format=api",
    "title": "Gli angeli dell'inferno",
    "original_title": "Hell's Angels",
    "year": 1930,
    "date_published": "1930-11-15",
    "duration": 127,
    "description": "Brothers Monte and Ray leave Oxford to join the Royal Flying Corps. Ray loves Helen; Helen enjoys an affair with Monte; before they leave on their mission over Germany they find her in still another man's arms.",
    "long_description": "Two brothers attending Oxford enlist with the RAF when World War I breaks out. Roy and Monte Rutledge have very different personalities. Monte is a freewheeling womanizer, even with his brother's girlfriend Helen. He also proves to have a yellow streak when it comes to his Night Patrol duties. Roy is made of strong moral fiber and attempts to keep his brother in line. Both volunteer for an extremely risky two man bombing mission for different reasons. Monte wants to lose his cowardly reputation and Roy seeks to protect his brother. Their assignment to knock out a strategic German munitions facility is a booming success, but with a squadron of fighters bearing down on them afterwards, escape seems unlikely.",
    "avg_vote": "7.4",
    "imdb_score": "7.4",
    "votes": 4806,
    "metascore": null,
    "budget": 3950000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 65,
    "reviews_from_critics": 41,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzMwODM4MzE2MF5BMl5BanBnXkFtZTgwNTc0NTgyMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Ben Lyon",
        "Carl von Haartman",
        "Douglas Gilmore",
        "Evelyn Hall",
        "Frank Clarke",
        "James Hall",
        "Jane Winton",
        "Jean Harlow",
        "John Darrow",
        "Lena Malena",
        "Lucien Prival",
        "Marian Marsh",
        "Roy Wilson",
        "William B. Davidson",
        "Wyndham Standing"
    ],
    "directors": [
        "Edmund Goulding",
        "Howard Hughes"
    ],
    "writers": [
        "Joseph Moncure March",
        "Marshall Neilan"
    ],
    "genres": [
        "Drama",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French",
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "The Caddo Company"
}