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

{
    "id": 19824,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19824?format=api",
    "title": "Trafalgar",
    "original_title": "The Divine Lady",
    "year": 1928,
    "date_published": "1928-12-26",
    "duration": 99,
    "description": "The story of the romance between Emma, Lady Hamilton, and British war hero Admiral Horatio Nelson.",
    "long_description": "A partly fictionalized account of history begins with the arrival of slatternly Emma Hart, a cook's daughter, at the home of Charles Greville. Greville takes her as his lover and grooms her until their relationship becomes an inconvenience. Greville then dupes Emma into traveling to Naples to live with his uncle, Lord Hamilton, ambassador to the court at Naples. Realizing that Greville has abandoned her, Emma agrees to marry Lord Hamilton. Soon, however, she meets Admiral Horatio Nelson of the British Navy. Emma plays a crucial role in convincing Naples to open its ports to Nelson during his campaign against Napoleon's French fleet. Soon, Emma and the married Nelson become romantically involved -- a relationship which will have consequences for them both.",
    "avg_vote": "6.2",
    "imdb_score": "6.2",
    "votes": 661,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 16,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTc3MDIxODQ3MF5BMl5BanBnXkFtZTgwMTkwMDY0MjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Corinne Griffith",
        "Dorothy Cumming",
        "Evelyn Hall",
        "H.B. Warner",
        "Helen Jerome Eddy",
        "Ian Keith",
        "Marie Dressler",
        "Michael Vavitch",
        "Montagu Love",
        "Victor Varconi",
        "William Conklin"
    ],
    "directors": [
        "Frank Lloyd"
    ],
    "writers": [
        "E. Barrington",
        "Forrest Halsey"
    ],
    "genres": [
        "Drama",
        "History",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}