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

{
    "id": 23926,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23926?format=api",
    "title": "La danza di Venere",
    "original_title": "Dancing Lady",
    "year": 1933,
    "date_published": "1933-11-24",
    "duration": 92,
    "description": "An attractive dancer is rescued from jail by a rich man, who helps her to have her first big opportunity at a musical play on Broadway.",
    "long_description": "Janie lives to dance and will dance anywhere, even stripping in a burlesque house. Tod Newton, the rich playboy, discovers her there and helps her get a job in a real Broadway musical being directed by Patch. Tod thinks he can get what he wants from Janie, Patch thinks Janie is using her charms rather than talent to get to the top, and Janie thinks Patch is the greatest. Steve, the stage manager, has the Three Stooges helping him manage all the show girls. Fred Astaire and Nelson Eddy make appearances as famous Broadway personalities.",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 2011,
    "metascore": null,
    "budget": 923055,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 47,
    "reviews_from_critics": 16,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYWI0NjFkYjYtODhkMC00YzZlLTgyZDMtMWNmODkwZjM5NGIxXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UY268_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Jarrett",
        "Clark Gable",
        "Franchot Tone",
        "Fred Astaire",
        "Gloria Foy",
        "Grant Mitchell",
        "Joan Crawford",
        "May Robson",
        "Maynard Holmes",
        "Moe Howard",
        "Nelson Eddy",
        "Robert Benchley",
        "Sterling Holloway",
        "Ted Healy and His Stooges",
        "Winnie Lightner"
    ],
    "directors": [
        "Robert Z. Leonard"
    ],
    "writers": [
        "Allen Rivkin",
        "P.J. Wolfson"
    ],
    "genres": [
        "Comedy",
        "Musical",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}