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

{
    "id": 24025,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24025?format=api",
    "title": "Carioca",
    "original_title": "Flying Down to Rio",
    "year": 1933,
    "date_published": "1934-06-09",
    "duration": 89,
    "description": "A bandleader woos a Latin flame who is already engaged to his employer.",
    "long_description": "Aviator and band leader Roger Bond is forever getting his group fired for flirting with the lady guests. When he falls for Brazilian beauty Belinha de Rezende it appears to be for real, even though she is already engaged. His Yankee Clippers band is hired to open the new Hotel Atlântico in Rio and Roger offers to fly Belinha part way home. After a mechanical breakdown and forced landing, Roger is confident and makes his move, but Belinha plays hard to get. She can't seem to decide between Roger and her fiance Júlio. When performing the airborne production number to mark the Hotel's opening, Júlio gets some intriguing ideas...",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 3322,
    "metascore": "72.0",
    "budget": 462000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 66,
    "reviews_from_critics": 29,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNDhjODgzMzItODU5OS00NmU4LTk2ZTgtYWFkOWNjN2IzNDA5XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Armand Kaliz",
        "Blanche Friderici",
        "Dolores del Rio",
        "Eric Blore",
        "Etta Moten",
        "Fred Astaire",
        "Gene Raymond",
        "Ginger Rogers",
        "Maurice Black",
        "Paul Porcasi",
        "Raul Roulien",
        "Reginald Barlow",
        "Roy D'Arcy",
        "Walter Walker"
    ],
    "directors": [
        "Thornton Freeland"
    ],
    "writers": [
        "Cyril Hume",
        "H.W. Hanemann"
    ],
    "genres": [
        "Comedy",
        "Musical",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Portuguese"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Radio Pictures"
}