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

{
    "id": 20799,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20799?format=api",
    "title": "The Cuckoos",
    "original_title": "The Cuckoos",
    "year": 1930,
    "date_published": "1930-05-04",
    "duration": 97,
    "description": "Two phony fortune tellers get mixed up with gypsies.",
    "long_description": "Fake fortune teller Professor Bird and his assistant Sparrow are in a Mexican resort near a gambling casino. Sparrow has fallen for Anita, an American girl who has lived with gypsies since she was four. But the gypsy leader Julius also wants her, and is willing to get her at any cost. Also at the casino are Miss Furst and her niece Ruth, who loves aviator Billy, but Miss Furst wants her to marry the Baron. But the Baron is only after Ruth's money. Miss Furst is very interested in contacting her late husband and hires Bird, especially after he helped her getting back her purse that was stolen by Julius. The Baron teams up with the Gypsies, after he noticed that Ruth and Billy are secretly engaged and has her kidnapped. Anita, who followed Sparrow is also taken back to Mexico. Billy, Bird and Sparrow start of to Mexico on their separate ways to free their girls, but it's not so easy, especially when staying at a hotel with some strange other guests and very careful gypsy guards.",
    "avg_vote": "6.1",
    "imdb_score": "6.0",
    "votes": 213,
    "metascore": null,
    "budget": 407000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 11,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjI3ZTUyMjktNTc5NC00YjdkLWEwYTktMDg0YjYwYTg0MTQyL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNTE1NDUzNg@@._V1_UY268_CR11,0,182,268_AL_.jpg",
    "actors": [
        "Bert Wheeler",
        "Dorothy Lee",
        "Hugh Trevor",
        "Ivan Lebedeff",
        "Jobyna Howland",
        "June Clyde",
        "Marguerita Padula",
        "Mitchell Lewis",
        "Raymond Maurel",
        "Robert Woolsey"
    ],
    "directors": [
        "Paul Sloane"
    ],
    "writers": [
        "Bert Kalmar",
        "Guy Bolton"
    ],
    "genres": [
        "Comedy",
        "Musical"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Radio Pictures"
}