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

{
    "id": 17416,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17416?format=api",
    "title": "Il figlio dello sceicco",
    "original_title": "The Son of the Sheik",
    "year": 1926,
    "date_published": "1926-09-05",
    "duration": 68,
    "description": "The son of the sheik and a dancing girl fall in love, but when he is made to believe she has betrayed him he seeks revenge.",
    "long_description": "Men and women, fathers and children. Ahmed, son of Diana and Sheik Ahmed Ben Hassan, falls in love with Yasmin, a dancing girl who fronts her father's gang of mountebanks. Among the cutthroats is Ghobah, a villainous Moor to whom Yasmin is promised. In ruins near Touggourt, the city where Yasmin dances, she and Ahmed meet secretly until one night when her father and the gang capture the son of the sheik, torture him, and hold him for ransom. Will Ahmed believe that Yasmin set him up for capture? Even if true love finds a way through webs of deceit, what will the vigorous and imposing sheik say about his son consorting with a dancing girl?",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 1800,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 716850,
    "worldwide_gross_income": null,
    "reviews_from_users": 24,
    "reviews_from_critics": 22,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNzY0MWQwNjQtMzg1YS00ZWQzLTlhMWMtNTU2ZTUxZDZlNTRlXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Agnes Ayres",
        "Bull Montana",
        "Bynunsky Hyman",
        "George Fawcett",
        "Karl Dane",
        "Montagu Love",
        "Rudolph Valentino",
        "Vilma Bánky"
    ],
    "directors": [
        "George Fitzmaurice"
    ],
    "writers": [
        "Edith Maude Hull",
        "Frances Marion"
    ],
    "genres": [
        "Adventure",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Feature Productions"
}