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

{
    "id": 7260,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/7260?format=api",
    "title": "The Return of Draw Egan",
    "original_title": "The Return of Draw Egan",
    "year": 1916,
    "date_published": "1916-10-15",
    "duration": 50,
    "description": "Outlaw leader \"Draw\" Egan, believed dead, turns up in the town of Yellow Dog. The townsfolk believe him to be William Blake, a strong and law-abiding man. They appoint him sheriff to rid ...",
    "long_description": "Outlaw leader \"Draw\" Egan, believed dead, turns up in the town of Yellow Dog. The townsfolk believe him to be William Blake, a strong and law-abiding man. They appoint him sheriff to rid the town of the hoodlums who have nearly taken over. He does so with dispatch, becoming a genuinely lawful and respected member of the town's society. But then Arizona Joe, one of Egan's old gang, shows up in Yellow Dog, threatening to expose Egan if he doesn't help his old comrade take over the town......",
    "avg_vote": "6.5",
    "imdb_score": "6.4",
    "votes": 139,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 6,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BM2NmNmM1YmMtOTAxZS00NzEwLTgzZTAtYzdjNWUzZjM1ZGU0XkEyXkFqcGdeQXVyNDY1NzU5NjY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "J.P. Lockney",
        "Louise Glaum",
        "Margery Wilson",
        "Robert McKim",
        "William S. Hart"
    ],
    "directors": [
        "William S. Hart"
    ],
    "writers": [
        "C. Gardner Sullivan"
    ],
    "genres": [
        "Action",
        "Adventure",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Kay-Bee Pictures"
}