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

{
    "id": 24037,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24037?format=api",
    "title": "Friday the Thirteenth",
    "original_title": "Friday the Thirteenth",
    "year": 1933,
    "date_published": "1934-12-14",
    "duration": 89,
    "description": "It is pouring with rain at one minute to midnight on Friday the thirteenth, and the driver of a London bus is peering through his blurred windshield as his vehicle sails down an empty road....",
    "long_description": "It is pouring with rain at one minute to midnight on Friday the thirteenth, and the driver of a London bus is peering through his blurred windshield as his vehicle sails down an empty road. Suddenly, lightning strikes, and a vast crane above topples into the path of the oncoming bus. Then Big Ben begins to wind backwards. Time recedes, and we discover the lives of all of the passengers and the events that brought them to that late-night bus journey, from the con man with a hundred pound cheque to the businessman's distraught and elderly wife. Time flows on, inevitably, to the crash, and past it, as some live and some die.",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 312,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 20,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMWY5ZmYwNDYtNjViMS00ZmM2LTkxYmEtZmE3NmJjYmNlODFmXkEyXkFqcGdeQXVyMjcyMDc2OA@@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Alfred Drayton",
        "Cyril Smith",
        "D.A. Clarke-Smith",
        "Edmund Gwenn",
        "Eliot Makeham",
        "Gibb McLaughlin",
        "Hartley Power",
        "Jessie Matthews",
        "Mary Jerrold",
        "Max Miller",
        "Muriel Aked",
        "Percy Parsons",
        "Richard Hulton",
        "Sonnie Hale",
        "Ursula Jeans"
    ],
    "directors": [
        "Victor Saville"
    ],
    "writers": [
        "G.H. Moresby-White",
        "Sidney Gilliat"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "UK"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Gainsborough Pictures"
}