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

{
    "id": 18471,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18471?format=api",
    "title": "Tell It to the Marines",
    "original_title": "Tell It to the Marines",
    "year": 1926,
    "date_published": "1927-01-29",
    "duration": 103,
    "description": "A gruff Marine sergeant and a handsome new recruit compete for the affection of a nurse.",
    "long_description": "U.S. Marine Sergeant O'Hara has his hands full training raw recruits, one of whom, 'Skeets' Burns, is a particular thorn in his side. If Burns's lackadaisical approach to the military were not bad enough, he also makes advances on nurse Nora Dale, whom Sergeant O'Hara secretly loves. Nora is oblivious to O'Hara's feelings and is attracted to the handsome 'Skeet.' But an indiscretion turns her against him, and it takes an expedition to China and a battle with a warlord's bandit brigade to sort things out among the nurse and her two Marines.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 1422,
    "metascore": null,
    "budget": 433000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 29,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTc5Njg5ODM1N15BMl5BanBnXkFtZTgwNzAwMjE3MzE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Carmel Myers",
        "Eddie Gribbon",
        "Eleanor Boardman",
        "Frank Currier",
        "Lon Chaney",
        "Maurice E. Kains",
        "Mitchell Lewis",
        "Warner Oland",
        "William Haines"
    ],
    "directors": [
        "George W. Hill"
    ],
    "writers": [
        "Joseph Farnham",
        "Richard Schayer"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}