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

{
    "id": 24873,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24873?format=api",
    "title": "Belle of the Nineties",
    "original_title": "Belle of the Nineties",
    "year": 1934,
    "date_published": "1934-09-21",
    "duration": 73,
    "description": "Ruby Carter, the American Beauty queen of the night club-sporting world, shifts her operations from St. Louis to New Orleans (which kind of belies the Western genre designation), mostly to ...",
    "long_description": "Ruby Carter, the American Beauty queen of the night club-sporting world, shifts her operations from St. Louis to New Orleans (which kind of belies the Western genre designation), mostly to get away from prizefighter Tiger Kid. Installed as the prize attraction of \"The Sensation Club\", ran by Ace Lamont, she quickly becomes the toast of the town and also marked as personal property by Ace, arousing the fury of Ace's former flame, Molly Brant. The not-overly-bright Tiger comes to town and is set for a title match with the champ by Ace, while the latter also has him steal some of Ruby's jewels. Ruby, no dumb-belle, figuring Ace has the fix in on the fight, uses some of her other jewels to lay a trap for Ace. Tiger confesses, after the fight, to Ruby his role in the jewel robbery while she hints that Ace was the one who slipped him the knock-out drops. Tiger goes after Ace, who, for his own reasons, has Molly locked in a closet.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 603,
    "metascore": null,
    "budget": 800000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 9,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNDNiYWM3NjUtYzEyZS00Y2ZmLTk3NzktMDYzNDUxMWY2MDg2XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Benny Baker",
        "Duke Ellington",
        "Edward Gargan",
        "Harry Woods",
        "James Donlan",
        "John Miljan",
        "Johnny Mack Brown",
        "Katherine DeMille",
        "Libby Taylor",
        "Mae West",
        "Morrie Cohan",
        "Roger Pryor",
        "Stuart Holmes",
        "Tyler Brooke",
        "Warren Hymer"
    ],
    "directors": [
        "Leo McCarey"
    ],
    "writers": [
        "Jack Wagner",
        "Mae West"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Musical"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}