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

{
    "id": 24894,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24894?format=api",
    "title": "The Black Cat",
    "original_title": "The Black Cat",
    "year": 1934,
    "date_published": "1934-05-07",
    "duration": 65,
    "description": "American honeymooners in Hungary become trapped in the home of a Satan-worshiping priest when the bride is taken there for medical help following a road accident.",
    "long_description": "Honeymooning in Hungary, Joan and Peter Allison share their train compartment with Dr. Vitus Verdegast, a courtly but tragic man who is returning to the remains of the town he defended before becoming a prisoner of war for fifteen years. When their hotel-bound bus crashes in a mountain storm and Joan is injured, the travellers seek refuge in the home, built fortress-like upon the site of a bloody battlefield, of famed architect Hjalmar Poelzig. There, cat-phobic Verdegast learns his wife's fate, grieves for his lost daughter, and must play a game of chess for Allison's life.",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 9446,
    "metascore": null,
    "budget": 95745,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 154,
    "reviews_from_critics": 93,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTkzZmMzZDEtNGVlNC00MDdlLThjZDctOTg2YzY2YjMxN2IxXkEyXkFqcGdeQXVyMTE2NzA0Ng@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Albert Conti",
        "Bela Lugosi",
        "Boris Karloff",
        "David Manners",
        "Egon Brecher",
        "Harry Cording",
        "Henry Armetta",
        "Julie Bishop",
        "Lucille Lund"
    ],
    "directors": [
        "Edgar G. Ulmer"
    ],
    "writers": [
        "Edgar Allan Poe",
        "Peter Ruric"
    ],
    "genres": [
        "Adventure",
        "Crime",
        "Horror"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Hungarian",
        "Latin"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universal Pictures"
}