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

{
    "id": 17918,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17918?format=api",
    "title": "The Gaucho",
    "original_title": "The Gaucho",
    "year": 1927,
    "date_published": "1928-01-23",
    "duration": 115,
    "description": "A girl is saved by a miracle after she falls from a cliff in the Argentine Andes, and is blessed with healing powers. A shrine is built on the site, and a whole city grows around it, rich ...",
    "long_description": "A girl is saved by a miracle after she falls from a cliff in the Argentine Andes, and is blessed with healing powers. A shrine is built on the site, and a whole city grows around it, rich with gold from the grateful worshipers. Ruiz, an evil and sadistic general, captures the city, confiscates the gold, and closes the shrine. But the Gaucho, the charismatic leader of a band of outlaws, comes to the rescue.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 283,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZDgyZTUxZjEtZjkxOC00NWQ5LThjNWUtNDU5YTc0ODIwYzI0XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Albert MacQuarrie",
        "Charles Stevens",
        "Douglas Fairbanks",
        "Eve Southern",
        "Gustav von Seyffertitz",
        "Joan Barclay",
        "Lupe Velez",
        "Michael Vavitch",
        "Nigel De Brulier"
    ],
    "directors": [
        "F. Richard Jones"
    ],
    "writers": [
        "Douglas Fairbanks"
    ],
    "genres": [
        "Adventure",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Elton Corporation"
}