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

{
    "id": 10808294,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10808294?format=api",
    "title": "Christmas on the Range",
    "original_title": "Christmas on the Range",
    "year": 2019,
    "date_published": "2019-12-09",
    "duration": 90,
    "description": "Kendall's one holiday wish is to keep the family ranch solvent. Her rival's charming son offers help-and maybe more-but can he be trusted?",
    "long_description": "Despite constant threats from her ambitious neighbor, Kendall Riley fights heroically to save the family ranch. In a surprising turn of events, Clint McCree, a Veterinarian and her neighbor's son, arrives on the scene to deliver a calf from a cow having trouble giving birth. Gradually, a romance blossoms, until her neighbor's henchmen scatter Kendall's herd and she wonders if Clint's concern is genuine or if he is part of his family's effort to sabotage her land. Filled with action, adventure, and emotion, this modern-day Western provides an engaging tribute to small towns, big dreams and the power of love. Stars Erin Cahill (Saving Grace, Red Widow, Sleepy Hollow), Nicholas Gonzalez (The Good Doctor, Walker Texas Ranger), A Martinez (Longmire, The Cowboys, Days of our Lives), and Lindsay Wagner (The Bionic Woman, Grey's Anatomy).",
    "avg_vote": "5.9",
    "imdb_score": "6.0",
    "votes": 238,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 2,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZGI5Y2Y0YTgtMTkzYy00MTk3LWI3MzctMjcxMjVjMDFkYTk4XkEyXkFqcGdeQXVyNjAxMTI1Mzk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "A Martinez",
        "Bill Edenfield",
        "Conor Church",
        "Daniel Williams-Lopez",
        "Dash Pomerantz",
        "Dawntavia Bullard",
        "Drew Waters",
        "Erin Cahill",
        "Lance E. Nichols",
        "Lindsay Wagner",
        "Maddi Rose Church",
        "Nicholas Gonzalez",
        "Randy McDowell",
        "Rebecca Koon",
        "Tara Gulledge"
    ],
    "directors": [
        "Gary Wheeler"
    ],
    "writers": [
        "Marshal Younger",
        "Torry Martin"
    ],
    "genres": [
        "Romance",
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Sydney Productions"
}