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

{
    "id": 23241,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23241?format=api",
    "title": "Follie del cinema",
    "original_title": "Movie Crazy",
    "year": 1932,
    "date_published": "1932-09-23",
    "duration": 84,
    "description": "After a mix-up with his application photograph, an aspiring actor is invited to a test screening and goes off to Hollywood.",
    "long_description": "Harold Hall, an accident-prone young man with little or no acting ability, desperately wants to be in pictures. After a mix-up with his application photograph, he gets an offer to have a screen-test and goes off to Hollywood. At the studio, he does everything wrong and causes all sorts of trouble, but he catches the fancy of a beautiful actress. Eventually, the studio owner recognizes him as a comic genius.",
    "avg_vote": "7.2",
    "imdb_score": "7.2",
    "votes": 1378,
    "metascore": null,
    "budget": 675000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 28,
    "reviews_from_critics": 14,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNzZkYzNlMjYtMzM2NC00MTk3LWE0YmMtZTg3Mjc5NTlmMzQ2L2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Housman",
        "Constance Cummings",
        "DeWitt Jennings",
        "Eddie Fetherston",
        "Harold Goodwin",
        "Harold Lloyd",
        "Kenneth Thomson",
        "Louise Closser Hale",
        "Lucy Beaumont",
        "Mary Doran",
        "Robert McWade",
        "Spencer Charters",
        "Sydney Jarvis"
    ],
    "directors": [
        "Clyde Bruckman",
        "Harold Lloyd"
    ],
    "writers": [
        "Vincent Lawrence"
    ],
    "genres": [
        "Comedy",
        "Family",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "The Harold Lloyd Corporation (II)"
}