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

{
    "id": 14945,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/14945?format=api",
    "title": "Tutte e nessuna",
    "original_title": "Girl Shy",
    "year": 1924,
    "date_published": "1924-04-20",
    "duration": 87,
    "description": "A shy, young man, who is completely incapable of talking to women, decides to write a book that details to other bachelors how to find a girlfriend.",
    "long_description": "Harold Meadows (Lloyd) is a shy, stuttering bachelor working in a tailor shop, who is writing a guide book for other bashful young men, \"The Secret of Making Love,\" chapters from which are portrayed as fantasy sequences. Fate has him meet rich girl, Mary (Ralston), and they fall in love. But she is about to wed an already married man, so our hero embarks upon a hair-raising daredevil ride to prevent the wedding.",
    "avg_vote": "7.7",
    "imdb_score": "7.7",
    "votes": 3055,
    "metascore": null,
    "budget": 400000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 63,
    "reviews_from_critics": 13,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOTIyMjRjMDAtMjY1ZS00YjhhLWJlODUtODJjODk3MzRiMTBiXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Carlton Griffin",
        "Harold Lloyd",
        "Jobyna Ralston",
        "Richard Daniels"
    ],
    "directors": [
        "Fred C. Newmeyer",
        "Sam Taylor"
    ],
    "writers": [
        "Sam Taylor",
        "Ted Wilde"
    ],
    "genres": [
        "Comedy",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "The Harold Lloyd Corporation"
}