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

{
    "id": 10726,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10726?format=api",
    "title": "Il lago d'oro, ovvero I ragni",
    "original_title": "Die Spinnen, 1. Teil - Der Goldene See",
    "year": 1919,
    "date_published": "1922-11-13",
    "duration": 81,
    "description": "Kay Hoog finds a message that indicates that some Incas are still alive, but the secret organisation \"Die Spinnen\" wants the Incas' gold....",
    "long_description": "In San Francisco, the sportsman Kay Hoog tells to the members of a club that he has found a message in a bottle with a map from a Harvard's missing professor telling about a treasure of an Inca lost civilization still alive. He decides to go to Peru to seek the gold. However, members of the secret criminal organization \"The Spiders\" leaded by Lio Sha break in Kay's mansion during the night and steal the map. Kay Hoog travels to Peru, where he retrieves his map and a document about the Diamond Ship from The Spiders. Later he saves the Priestess of the Sun Naela and brings her to San Francisco. However, The Spiders kill Naela and Kay Hoog promises revenge for the death of his love.",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 1070,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 22,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTY2MDFjY2QtYjY0YS00YmVkLTg1OTQtZDViYTgwZDBkNmViXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Carl de Vogt",
        "Georg John",
        "Gilda Langer",
        "Harry Frank",
        "Lil Dagover",
        "Paul Biensfeldt",
        "Ressel Orla"
    ],
    "directors": [
        "Fritz Lang"
    ],
    "writers": [
        "Fritz Lang"
    ],
    "genres": [
        "Adventure",
        "Western"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Decla-Bioscop AG"
}