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

{
    "id": 15687,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15687?format=api",
    "title": "Clash of the Wolves",
    "original_title": "Clash of the Wolves",
    "year": 1925,
    "date_published": "1925-11-28",
    "duration": 74,
    "description": "A fire in the mountains drive a wolf pack into a nearby desert where they will terrorize the local residents.",
    "long_description": "A fire in the mountains drive a wolf pack into the nearby desert where they terrorize the local residents. The leader of the wolf pack is Lobo, actually a halfbreed (Rin Tin Tin). When the pack is discovered hunting a herd of cows, a posse gives chase. Lobo leaves his pack to lead the posse away. He is injured and found by a local prospector, Dave Weston (Charles Farrell). The prospector nurses Lobo back to health and the two become close friends. Meanwhile, Weston has made a Borax find in the area. His girl friend May Barstowe (June Marlowe), daughter of a wealthy rancher, is pleased. However the local chemist, Borax Horton (Pat Hartigan), actually a claim jumper, plans to steal the claim. In a sandstorm he is able to shoot Weston and leave the prospector for dead in the desert. Lobo tries to get a message to May, but runs afoul of Horton. Finally, he is able to bring May to Weston, who are then both terrorized by Horton. Lobo calls upon his pack to eliminate the menace, allowing for...",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 246,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 6,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWZhYWI0MGYtZDFmNy00NzlhLTkwYTctNjkyOGZjNDg5ZTdmXkEyXkFqcGdeQXVyMzI5NjUyMDM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Charles Farrell",
        "Heinie Conklin",
        "June Marlowe",
        "Nanette",
        "Pat Hartigan",
        "Rin Tin Tin",
        "Will Walling"
    ],
    "directors": [
        "Noel M. Smith"
    ],
    "writers": [
        "Charles Logue"
    ],
    "genres": [
        "Adventure",
        "Romance",
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}