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

{
    "id": 19563,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19563?format=api",
    "title": "La serpe di Zanzibar",
    "original_title": "West of Zanzibar",
    "year": 1928,
    "date_published": "1928-11-24",
    "duration": 65,
    "description": "A magician seeks vengeance upon the man who paralyzed him and the illegitimate daughter he sired with the magician's wife.",
    "long_description": "Magician Phroso's wife Anna leaves him for another man, named Crane, who fights with Phroso and leaves him paralyzed. Later Anna returns and he finds her dead, leaving behind a daughter. For 18 years Phroso, known as \"Dead Legs\" by his cronies, plots his revenge, becoming a pseudo-king in East Africa, nearby where Crane has set up an ivory business. When the daughter is grown, having lived in a brothel in Zanzibar thanks to \"Dead Legs\", Phroso put his plan into action, resulting in revenge and retribution all around.",
    "avg_vote": "7.2",
    "imdb_score": "7.2",
    "votes": 1610,
    "metascore": null,
    "budget": 259000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 34,
    "reviews_from_critics": 18,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZGEwNTY2N2ItZmU4ZC00ZmZkLWE5NTItMTU0NGEyMzlkOGZlXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Curtis Nero",
        "Jacqueline Gadsdon",
        "Kalla Pasha",
        "Lionel Barrymore",
        "Lon Chaney",
        "Mary Nolan",
        "Tiny Ward",
        "Warner Baxter"
    ],
    "directors": [
        "Tod Browning"
    ],
    "writers": [
        "Chester De Vonde",
        "Elliott J. Clawson"
    ],
    "genres": [
        "Drama",
        "Mystery"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}