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

{
    "id": 18515,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18515?format=api",
    "title": "Notte d'Arabia",
    "original_title": "Two Arabian Knights",
    "year": 1927,
    "date_published": "1927-09-23",
    "duration": 92,
    "description": "Two American soldiers are captured by the Germans on the Western Front during World War One and escape a POW camp only to stumble into further life-threatening adventures when they come across an Arabian king's daughter while on the lam.",
    "long_description": "Americans Sgt. Peter O'Gaffney and one of his soldiers, privileged \"pretty boy\" W. Daingerfield Phelps III (who is always drawing caricatures), are captured and interred at a POW camp in Northern Germany near the end of WWI. Their relationship has always been an antagonistic one based on what Phelps sees as O'Gaffney pushing him around. O'Gaffney's rank is despite being wanted by the police back home as a con man. It is because of these differences that their resulting friendship at camp is so unlikely, the friendship based on both having the nerve to attempt to escape. On a snow covered day, they do manage to escape, in part by stealing white robes to camouflage themselves against the snow. In their adventures and misadventures on the outside in trying to get to safety, those adventures which include being mistaken for Arab prisoners, they find themselves as stowaways on board a cargo ship headed to Arabia. It is there that they meet a beautiful Arab woman named Mirza, who they save ...",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 895,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 509718,
    "worldwide_gross_income": null,
    "reviews_from_users": 27,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTJiNGE2M2MtODUyOS00OTI0LTgzODEtYjc0M2UwZTNjNWQzL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Boris Karloff",
        "David Cavendish",
        "DeWitt Jennings",
        "Ian Keith",
        "Jean Vachon",
        "Louis Wolheim",
        "Mary Astor",
        "Michael Vavitch",
        "Michael Visaroff",
        "Nicholas Dunaew",
        "William Boyd"
    ],
    "directors": [
        "Lewis Milestone"
    ],
    "writers": [
        "Cyril Gardner",
        "Wallace Smith"
    ],
    "genres": [
        "Adventure",
        "Comedy",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "The Caddo Company"
}