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

{
    "id": 22357,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22357?format=api",
    "title": "The Secret 6",
    "original_title": "The Secret 6",
    "year": 1931,
    "date_published": "1931-04-18",
    "duration": 83,
    "description": "After rising bootlegger Slaughterhouse Scorpio eliminates his gangland competition, two reporters and a cabal of six businessmen work to expose him.",
    "long_description": "Bootlegger/cafe owner Johnny Franks recruits crude working man Louis 'Slaughterhouse' Scorpio to join his gang which is masterminded by crooked criminal defense lawyer Richard Newton. Slaughterhouse eventually takes over Franks' operation, beats a rival gang, becomes wealthy and dominates the city for several years until a secret group of 6 masked businessmen have him prosecuted and sent to the electric chair with the help of rival crusading newspapermen Carl Luckner and Hank Rogers. Waitress Anne Courtland is torn between her love for the honest newsman Hank and her financial dependence on her generous boss, Slaughterhouse.",
    "avg_vote": "6.3",
    "imdb_score": "6.3",
    "votes": 746,
    "metascore": null,
    "budget": 494000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 28,
    "reviews_from_critics": 16,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTg0OTc5MjE4M15BMl5BanBnXkFtZTgwMDEzMDMyMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Clark Gable",
        "DeWitt Jennings",
        "Fletcher Norton",
        "Frank McGlynn Sr.",
        "Jean Harlow",
        "John Miljan",
        "Johnny Mack Brown",
        "Lewis Stone",
        "Louis Natheaux",
        "Marjorie Rambeau",
        "Murray Kinnell",
        "Paul Hurst",
        "Ralph Bellamy",
        "Theodore von Eltz",
        "Wallace Beery"
    ],
    "directors": [
        "George W. Hill"
    ],
    "writers": [
        "Frances Marion"
    ],
    "genres": [
        "Crime",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Italian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Cosmopolitan Productions"
}