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

{
    "id": 23238,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23238?format=api",
    "title": "La pericolosa partita",
    "original_title": "The Most Dangerous Game",
    "year": 1932,
    "date_published": "1934-03-02",
    "duration": 63,
    "description": "An insane hunter arranges for a ship to be wrecked on an island where he can indulge in some sort of hunting and killing of the passengers.",
    "long_description": "After their luxury cabin cruiser crashes on a reef, Bob Rainsford finds himself washed ashore on a remote island. He finds a fortress-like house and the owner, Count Zaroff, seems to be quite welcoming. Apart from Zaroff's servant Ivan, the only other people present are Eve Trowbridge and her brother Martin, also survivors of their own shipwreck. Other survivors are missing however and Rainsford soon learns why. Zaroff releases them into his jungle island and then hunts them down in his grisly \"outdoor chess\" game! Then after Martin disappears, Bob realizes that he and Eve are to be the next \"pawns\" in Zaroff's deadly game.",
    "avg_vote": "7.2",
    "imdb_score": "7.1",
    "votes": 10475,
    "metascore": null,
    "budget": 218869,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 110,
    "reviews_from_critics": 103,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNzU4MjYxMjI1N15BMl5BanBnXkFtZTgwNjk1NTAwMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Fay Wray",
        "Joel McCrea",
        "Leslie Banks",
        "Noble Johnson",
        "Oscar 'Dutch' Hendrian",
        "Robert Armstrong",
        "Steve Clemente",
        "William B. Davidson"
    ],
    "directors": [
        "Ernest B. Schoedsack",
        "Irving Pichel"
    ],
    "writers": [
        "James Ashmore Creelman",
        "Richard Connell"
    ],
    "genres": [
        "Action",
        "Adventure",
        "Thriller"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Russian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Merian C. Cooper and Ernest Schoedsack"
}