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

{
    "id": 24978,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24978?format=api",
    "title": "Chu Chin Chow",
    "original_title": "Chu Chin Chow",
    "year": 1934,
    "date_published": "1934-09-21",
    "duration": 103,
    "description": "Musical retelling of the \"Ali Baba and the 40 Thieves\" Arabian Nights tale.",
    "long_description": "Ali Baba discovers the treasure cave of robber-baron Abu Hasan, and tells his greedy brother, Kasim Baba, who is posing as a Chinese merchant and entertaining Hasan, where the cache is hidden. Zahrat, acting as a spy for Hasan, is blamed when the robber is almost caught, and Kasim is killed. Zahrat then decides to join Ali and his son, Nor-al-din, who is in love with the slave-girl, Marjanal. During a party, she kills the disguised Hasan, and his men are boiled in oil.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 131,
    "metascore": null,
    "budget": 500000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjAwMDM0OTg1Nl5BMl5BanBnXkFtZTgwOTE1MDQ0MjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Anna May Wong",
        "Dennis Hoey",
        "Francis L. Sullivan",
        "Frank Cochrane",
        "Fritz Kortner",
        "George Robey",
        "Gibb McLaughlin",
        "John Garrick",
        "Kiyoshi Takase",
        "Lawrence Hanray",
        "Malcolm 'Mr. Jetsam' McEachern",
        "Pearl Argyle",
        "Sydney Fairbrother",
        "Thelma Tuson"
    ],
    "directors": [
        "Walter Forde"
    ],
    "writers": [
        "Edward Knoblock",
        "Oscar Asche"
    ],
    "genres": [
        "Action",
        "Adventure",
        "Comedy"
    ],
    "countries": [
        "UK"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Gainsborough Pictures"
}