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

{
    "id": 20538,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20538?format=api",
    "title": "L'indomabile",
    "original_title": "Untamed",
    "year": 1929,
    "date_published": "1929-11-23",
    "duration": 86,
    "description": "When her rich oilman father is killed, Bingo, raised in the wilds of South America, inherits the company. Her guardians Ben and Howard send her to New York for civilizing but on the way she...",
    "long_description": "When her rich oilman father is killed, Bingo, raised in the wilds of South America, inherits the company. Her guardians Ben and Howard send her to New York for civilizing but on the way she meets Andy, wonderful in every way but wealth. He can't live off her money, he says, as he turns to Marjory. Uncivilized Bingo, who hits anyone she disagrees with, shoots Andy in the arm. Now it's okay for him to marry her.",
    "avg_vote": "5.1",
    "imdb_score": "5.1",
    "votes": 480,
    "metascore": null,
    "budget": 229000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 23,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjEwNDEyNjc4N15BMl5BanBnXkFtZTgwMjE3Njk1MDE@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Don Terry",
        "Edward J. Nugent",
        "Ernest Torrence",
        "Gertrude Astor",
        "Grace Cunard",
        "Gwen Lee",
        "Holmes Herbert",
        "Joan Crawford",
        "John Miljan",
        "Lloyd Ingraham",
        "Milton J. Fahrney",
        "Robert Montgomery",
        "Tom O'Brien",
        "Wilson Benge"
    ],
    "directors": [
        "Jack Conway"
    ],
    "writers": [
        "Charles E. Scoggins",
        "Lucille Newmark"
    ],
    "genres": [
        "Adventure",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}