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

{
    "id": 12532,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/12532?format=api",
    "title": "Le due orfanelle",
    "original_title": "Orphans of the Storm",
    "year": 1921,
    "date_published": "1922-01-01",
    "duration": 150,
    "description": "Two orphaned sisters are caught up in the turmoil of the French Revolution, encountering misery and love along the way.",
    "long_description": "Henriette and Louise, a foundling, are raised together as sisters. When Louise goes blind, Henriette swears to take care of her forever. They go to Paris to see if Louise's blindness can be cured, but are separated when an aristocrat lusts after Henriette and abducts her. Only Chevalier de Vaudrey is kind to her, and they fall in love. The French Revolution replaces the corrupt Aristocracy with the equally corrupt Robespierre. De Vaudrey, who has always been good to peasants, is condemned to death for being an aristocrat, and Henriette for harboring him. Will revolutionary hero Danton, the only voice for mercy in the new regime, be able to save them from the guillotine?",
    "avg_vote": "7.4",
    "imdb_score": "7.3",
    "votes": 4735,
    "metascore": null,
    "budget": 1000000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 40,
    "reviews_from_critics": 24,
    "image_url": "https://m.media-amazon.com/images/M/MV5BODRjNjU4ZjQtZDUyZi00MDY4LWI5MTAtYTMyNTAxYWNjZjA3XkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Adolph Lestina",
        "Creighton Hale",
        "Dorothy Gish",
        "Frank Losee",
        "Frank Puglia",
        "Joseph Schildkraut",
        "Katherine Emmet",
        "Lee Kohlmar",
        "Lillian Gish",
        "Lucille La Verne",
        "Marcia Harris",
        "Monte Blue",
        "Morgan Wallace",
        "Sheldon Lewis",
        "Sidney Herbert"
    ],
    "directors": [
        "D.W. Griffith"
    ],
    "writers": [
        "Adolphe d'Ennery",
        "Eugène Cormon"
    ],
    "genres": [
        "Drama",
        "History",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "D.W. Griffith Productions"
}