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

{
    "id": 20827,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20827?format=api",
    "title": "La divorziata",
    "original_title": "The Divorcee",
    "year": 1930,
    "date_published": "1930-04-19",
    "duration": 84,
    "description": "When a woman discovers that her husband has been unfaithful to her, she decides to respond to his infidelities in kind.",
    "long_description": "Jerry and Ted are young, in love, and part of the New York 'in-crowd'. Jerry's decision to marry Ted crushes a yearning Paul. Distraught Paul gets drunk and wrecks his car, disfiguring young Dorothy's face in the process. Out of pity, Paul marries Dorothy. Years later, the apparent perfect marriage of Ted and Jerry falls apart from infidelity on both sides. Inwardly unhappy, popular Jerry lives a party life while Ted sinks into a life of alcoholism. Jerry then runs into Paul, who still loves her. After spending time together with Jerry, Paul plans to divorce Dorothy. When Jerry sees Dorothy again, she has second thoughts about where her life is heading.",
    "avg_vote": "6.8",
    "imdb_score": "6.7",
    "votes": 2750,
    "metascore": null,
    "budget": 340691,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 50,
    "reviews_from_critics": 33,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTk5NzQzNjEwNV5BMl5BanBnXkFtZTgwNjA2NTAwMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Chester Morris",
        "Conrad Nagel",
        "Florence Eldridge",
        "George Irving",
        "Helene Millard",
        "Judith Wood",
        "Mary Doran",
        "Norma Shearer",
        "Robert Elliott",
        "Robert Montgomery",
        "Tyler Brooke",
        "Zelda Sears"
    ],
    "directors": [
        "Robert Z. Leonard"
    ],
    "writers": [
        "Nick Grinde",
        "Ursula Parrott"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}