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

{
    "id": 17463,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17463?format=api",
    "title": "I tre furfanti",
    "original_title": "3 Bad Men",
    "year": 1926,
    "date_published": "1926-08-28",
    "duration": 92,
    "description": "Three outlaws come to the aid of a young girl after her father is killed.",
    "long_description": "In 1876, an old man finds gold in the Sioux lands, provoking a gold and land rush from immigrants to Dakota. On the way to Custer, the lonely cowboy Dan O'Malley helps to fix the wheel of Mr. Carlton's wagon and flirts with his daughter Lee Carlton. Later, Lee and her father are attacked by horse thieves and Mr. Carlton is murdered; however, the outlaws \"Bull\" Stanley, Mike Costigan and \"Spade\" Allen save her from the criminals and head with her to the camp where the pioneers are waiting for President Grant proclamation to explore the lands. In the site, the corrupt Sheriff Layne Hunter rules with his henchmen with horror and injustice. The trio of outlaws decides that Lee needs to get married and select Dan to be her husband. When Bull's sister Millie Stanley is murdered by Hunter's right arm Nat Lucas, \"Bull\" organizes the men to chase Hunter. But it is 1877 and the gold and land race of wagons is ready to start.",
    "avg_vote": "7.5",
    "imdb_score": "7.5",
    "votes": 1027,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 18,
    "reviews_from_critics": 22,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMWU4MWNkYWEtMjI0OC00MWE1LWJmNjEtNmQ4Yjk1ZWRlNTM3XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alec B. Francis",
        "Frank Campeau",
        "George Harris",
        "George O'Brien",
        "J. Farrell MacDonald",
        "Jay Hunt",
        "Lou Tellegen",
        "Olive Borden",
        "Otis Harlan",
        "Phyllis Haver",
        "Priscilla Bonner",
        "Tom Santschi"
    ],
    "directors": [
        "John Ford"
    ],
    "writers": [
        "Herman Whitaker",
        "John Stone"
    ],
    "genres": [
        "Romance",
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fox Film Corporation"
}