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

{
    "id": 20439,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20439?format=api",
    "title": "Cuori e motori",
    "original_title": "Speedway",
    "year": 1929,
    "date_published": "1929-09-07",
    "duration": 76,
    "description": "Bill Whipple is a happy-go-lucky mechanic for MacDonald who thinks that he is the worlds greatest driver and lover. Mac has treated Bill like a son since he took him in. One day at the ...",
    "long_description": "Bill Whipple is a happy-go-lucky mechanic for MacDonald who thinks that he is the worlds greatest driver and lover. Mac has treated Bill like a son since he took him in. One day at the track, Bill sees Pat Bannon, and tries his best to impress her, but to no avail. On his way to catch a flight, he tricks Pat into taking him to the airport and she gets even by taking him up in a plane. He hates to fly, but will not show her that he is afraid and when the plane breaks up, he is a hero for rescuing her. This gets him publicity and Renny offers him his car to drive in the Indianapolis 500. Bill breaks with Mac to drive the car and puts it on the pole for the race. Then Renny double crosses Bill and plans to drive the car himself since Bill has tuned it so well.",
    "avg_vote": "6.1",
    "imdb_score": "6.0",
    "votes": 603,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 5,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTM5MzIzMjkyOV5BMl5BanBnXkFtZTcwOTYzMDAyMw@@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Anita Page",
        "Ernest Torrence",
        "Eugenie Besserer",
        "John Miljan",
        "Karl Dane",
        "Polly Moran",
        "William Haines"
    ],
    "directors": [
        "Harry Beaumont"
    ],
    "writers": [
        "Ann Price",
        "Byron Morgan"
    ],
    "genres": [
        "Drama",
        "Romance",
        "Sport"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}