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

{
    "id": 23158,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23158?format=api",
    "title": "Amami stanotte",
    "original_title": "Love Me Tonight",
    "year": 1932,
    "date_published": "1932-10-14",
    "duration": 104,
    "description": "A Parisian tailor finds himself posing as a baron in order to collect a sizeable bill from an aristocrat, only to fall in love with an aloof young princess.",
    "long_description": "When Parisienne tailor Maurice Courtelin learns that one of his aristocratic clients, the Viscount Gilbert de Varèze, is a deadbeat who never pays for the merchandise he acquires, he heads off to try and collect what is owed to him. He gets little in the way of cash from the Viscount who is desperate that his uncle, the Duke D'Artelines not learn of his debts. He suggests that Maurice spend a little time at the chateau until the money can be found. The Duke takes an immediate liking to Maurice - who's been introduced as a Baron - but that's not the case for the Princess Jeanette who, after an encounter with him him on the road earlier that day. Over time Jeannette falls in love with him",
    "avg_vote": "7.6",
    "imdb_score": "7.6",
    "votes": 3542,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 57,
    "reviews_from_critics": 24,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMGFhZTQ3NGItMWFlNy00OTU4LWJiYzItYWM2NGU1YTY1NjE4XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY268_CR10,0,182,268_AL_.jpg",
    "actors": [
        "Bert Roach",
        "Blanche Friderici",
        "C. Aubrey Smith",
        "Charles Butterworth",
        "Charles Ruggles",
        "Elizabeth Patterson",
        "Ethel Griffies",
        "Jeanette MacDonald",
        "Joseph Cawthorn",
        "Maurice Chevalier",
        "Myrna Loy",
        "Robert Greig"
    ],
    "directors": [
        "Rouben Mamoulian"
    ],
    "writers": [
        "George Marion Jr.",
        "Samuel Hoffenstein"
    ],
    "genres": [
        "Comedy",
        "Musical",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}