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

{
    "id": 23545,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23545?format=api",
    "title": "Melodie della vita",
    "original_title": "Symphony of Six Million",
    "year": 1932,
    "date_published": "1932-04-29",
    "duration": 94,
    "description": "Boy grows up to become a successful doctor at the expense of family relationships.",
    "long_description": "A brilliant young doctor grows away from his family and his community when his older brother convinces him to make his fortune as a Park Avenue doctor. He spends his time prescribing placebos to people who are not sick leaving no time for his clinic and his passion of genuine healing. When tragedy strikes, he sees where his obligations lie, but will it be too late?",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 348,
    "metascore": null,
    "budget": 270000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 15,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNzFjMzllOWQtNzMzNy00NmZhLWE2ZDItNzE0YzAxMGRhMDdhXkEyXkFqcGdeQXVyMjgxMTkzOQ@@._V1_UY268_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Anna Appel",
        "Eddie Phillips",
        "Gregory Ratoff",
        "Helen Freeman",
        "Irene Dunne",
        "John St. Polis",
        "Josephine Whittell",
        "Julie Haydon",
        "Lita Chevret",
        "Noel Madison",
        "Oscar Apfel",
        "Ricardo Cortez"
    ],
    "directors": [
        "Gregory La Cava"
    ],
    "writers": [
        "Fannie Hurst",
        "J. Walter Ruben"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Hebrew"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Radio Pictures"
}