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

{
    "id": 21371,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21371?format=api",
    "title": "Show Girl in Hollywood",
    "original_title": "Show Girl in Hollywood",
    "year": 1930,
    "date_published": "1930-04-20",
    "duration": 80,
    "description": "'Rainbow Girls' has just opened and closed on Broadway when Dixie, a actress in it, runs into smooth talking Hollywood Director Frank Buelow. He tells her she would be a natural, promises ...",
    "long_description": "'Rainbow Girls' has just opened and closed on Broadway when Dixie, a actress in it, runs into smooth talking Hollywood Director Frank Buelow. He tells her she would be a natural, promises her a movie contract, and so she goes to Hollywood, but there is no contract for her. She meets Donny, a washed-up veteran actress (Blanche Sweet), on the lot who becomes her friend. Frank is fired from his studio and the new director finds that Frank's storyline is actually a copy of 'Rainbow Girls' stage play from Broadway. They call Jimmy, the author and Dixie's boyfriend, for the rights and he goes to Hollywood to produce it as a movie. Dixie gets the lead. But things start going wrong when Dizzy Dixie, spurred on by the fired Director Buelow, thinks that she is better than the picture or the studio and starts making demands. Interesting note: Good look at early Hollywood, with cameos by Loretta Young, Walter Pigeon, Noah Beery and a young Noah Beery, Jr. make the film fun to watch",
    "avg_vote": "6.4",
    "imdb_score": "6.3",
    "votes": 273,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 13,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjkwNzVjZWItNTI3Zi00NmNhLWExMGQtMjhkZWJmOGIyM2JiXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR12,0,182,268_AL_.jpg",
    "actors": [
        "Alice White",
        "Blanche Sweet",
        "Ford Sterling",
        "Herman Bing",
        "Jack Mulhall",
        "John Miljan",
        "Lee Shumway",
        "Virginia Sale"
    ],
    "directors": [
        "Mervyn LeRoy"
    ],
    "writers": [
        "Harvey F. Thew",
        "J.P. McEvoy"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Musical"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}