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

{
    "id": 9611,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/9611?format=api",
    "title": "Charlot soldato",
    "original_title": "Shoulder Arms",
    "year": 1918,
    "date_published": "1918-10-27",
    "duration": 45,
    "description": "Charlie is a boot camp private who has a dream of being a hero who goes on a daring mission behind enemy lines.",
    "long_description": "Charlie is in boot camp in the \"awkward squad.\" Once in France he gets no letters from home. He finally gets a package containing limburger cheese which requires a gas mask and which he throws over into the German trench. He goes \"over the top\" and captures thirteen Germans (\"I surrounded them\"), then volunteers to wander through the German lines disguised as a tree trunk. With the help of a French girl he captures the Kaiser and the Crown Prince and is given a statue and victory parade in New York and then ... fellow soldiers wake him from his dream.",
    "avg_vote": "7.3",
    "imdb_score": "7.3",
    "votes": 6037,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 38,
    "reviews_from_critics": 21,
    "image_url": "https://m.media-amazon.com/images/M/MV5BODQ0Mzc5NzczMF5BMl5BanBnXkFtZTgwODkzNzkxMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Albert Austin",
        "Charles Chaplin",
        "Edna Purviance",
        "Henry Bergman",
        "Jack Wilson",
        "Loyal Underwood",
        "Syd Chaplin",
        "Tom Wilson"
    ],
    "directors": [
        "Charles Chaplin"
    ],
    "writers": [
        "Charles Chaplin"
    ],
    "genres": [
        "Comedy",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "None"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Charles Chaplin Productions"
}