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

{
    "id": 17103,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17103?format=api",
    "title": "The Magician",
    "original_title": "The Magician",
    "year": 1926,
    "date_published": "1926-10-24",
    "duration": 83,
    "description": "A magician/alchemist, seeking to create life, finds that he needs the \"blood of a virgin\" to continue his experiments. He sends out his dwarf assistant to pick out the right girl.",
    "long_description": "A young girl, Margaret Dauncey, is caught between the forces of a charlatan magician, Oliver Haddo, whom she is unable to resist,and the love of a young surgeon, Arthur Burdon, who has saved her from being a helpless cripple by performing a delicate operation on her spine which startled the medical world.",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 556,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 18,
    "reviews_from_critics": 11,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYTMwMTk1ODItNThhNi00ZDg3LTliOGUtNDdmNTJmNjI2MGQ1XkEyXkFqcGdeQXVyMTE2NzA0Ng@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alice Terry",
        "Firmin Gémier",
        "Gladys Hamer",
        "Henry Wilson",
        "Hubert I. Stowitts",
        "Iván Petrovich",
        "Paul Wegener"
    ],
    "directors": [
        "Rex Ingram"
    ],
    "writers": [
        "Rex Ingram",
        "W. Somerset Maugham"
    ],
    "genres": [
        "Drama",
        "Fantasy",
        "Horror"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn Pictures Corporation"
}