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

{
    "id": 11079540,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11079540?format=api",
    "title": "The Will",
    "original_title": "The Will",
    "year": 2020,
    "date_published": "2020-02-14",
    "duration": 105,
    "description": "Early in her life, Josephine Malone learned the hard way that there was only one person she could love and trust: her grandmother, Lydia Malone. Out of necessity, unconsciously and very ...",
    "long_description": "Early in her life, Josephine Malone learned the hard way that there was only one person she could love and trust: her grandmother, Lydia Malone. Out of necessity, unconsciously and very successfully, Josephine donned a disguise to keep all others at bay. She led a globetrotting lifestyle on the fringes of the fashion and music elite, but she kept herself distant. While Josephine was trotting the globe, retired boxer Jake Spear was living in the same small town as Lydia. There was nothing disguised about Jake. Including the fact he made a habit of making very bad decisions about who to give his love. But for Josephine and Jake, there was one person who adored them. One person who knew how to lead them to happiness. And one person who was intent on doing it. Even if she had to do it as her final wish on this earth.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 444,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 14,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNjAyZmQ3MjAtZWU3NS00MDJjLWEzNzMtZjY5NjdiODJjMGU1XkEyXkFqcGdeQXVyMTA0NTk4Mw@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Bill Thorpe",
        "Billy Rick",
        "Bobby James Evers",
        "Brett Bartholomew",
        "Caroline Mixon",
        "Chris McKenna",
        "Christian Hopper",
        "Dane Michael Glynn",
        "Eileen Weisinger",
        "Kyra Weeks",
        "Martin Dingle Wall",
        "Megan Dodds",
        "Patrick Byas",
        "Robin S. Walker",
        "Trey Murphy"
    ],
    "directors": [
        "Louise Alston"
    ],
    "writers": [
        "Joany Kane",
        "Kristen Ashley"
    ],
    "genres": [
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Unknown"
}