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

{
    "id": 11130,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11130?format=api",
    "title": "Dr. Jekyll e Mr. Hyde",
    "original_title": "Dr. Jekyll and Mr. Hyde",
    "year": 1920,
    "date_published": "1920-09-28",
    "duration": 69,
    "description": "Dr. Henry Jekyll experiments with scientific means of revealing the hidden, dark side of man and releases a murderer from within himself.",
    "long_description": "Based on the Robert Louis Stevenson story: Doctor Henry Jekyll's enthusiasm for science and his selfless acts of service have made him a much-admired man. But as he visits Sir George Carew one evening, his host criticizes him for his reluctance to experience the more sensual side of life. Sir George goads Jekyll into visiting a music hall, where he watches the alluring dancer Gina. Jekyll becomes fascinated with the two contrasting sides of human nature, and he becomes obsessed with the idea of separating them. After extensive work in his laboratory, he devises a formula that does indeed allow him to alternate between two completely different personalities, his own and that of a brutish, lascivious person whom he names Hyde. It is not long before the personality of Hyde begins to dominate Jekyll's affairs.",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 4878,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 73,
    "reviews_from_critics": 67,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzE5YjQ0OTEtZWYxOS00OGEzLTlhYjMtMTNlOTllNGNiNDY1XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Brandon Hurst",
        "Cecil Clovelly",
        "Charles Lane",
        "John Barrymore",
        "Louis Wolheim",
        "Martha Mansfield",
        "Nita Naldi"
    ],
    "directors": [
        "John S. Robertson"
    ],
    "writers": [
        "Clara Beranger",
        "Robert Louis Stevenson"
    ],
    "genres": [
        "Drama",
        "Horror",
        "Sci-Fi"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}