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

{
    "id": 23470,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23470?format=api",
    "title": "Il segno della croce",
    "original_title": "The Sign of the Cross",
    "year": 1932,
    "date_published": "1933-02-10",
    "duration": 108,
    "description": "A Roman soldier becomes torn between his love for a Christian woman and his loyalty to Emperor Nero.",
    "long_description": "After burning Rome, Emperor Nero decides to blame the Christians, and issues the edict that they are all to be caught and sent to the arena. Two old Christians are caught, and about to be hauled off, when Marcus, the highest military official in Rome, comes upon them. When he sees their stepdaughter Mercia, he instantly falls in love with her and frees them. Marcus pursues Mercia, which gets him into trouble with Emperor (for being easy on Christians) and with the Empress, who loves him and is jealous.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 1988,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 61,
    "reviews_from_critics": 29,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTcyMDk3NzAwMF5BMl5BanBnXkFtZTgwMjk1Nzk1MjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Hohl",
        "Charles Laughton",
        "Clarence Burton",
        "Claudette Colbert",
        "Elissa Landi",
        "Ferdinand Gottschalk",
        "Fredric March",
        "Harry Beresford",
        "Ian Keith",
        "Joyzelle Joyner",
        "Nat Pendleton",
        "Richard Alexander",
        "Tommy Conlon",
        "Vivian Tobin",
        "William V. Mong"
    ],
    "directors": [
        "Cecil B. DeMille"
    ],
    "writers": [
        "Sidney Buchman",
        "Waldemar Young"
    ],
    "genres": [
        "Drama",
        "History"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}