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

{
    "id": 24240,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24240?format=api",
    "title": "Signora per un giorno",
    "original_title": "Lady for a Day",
    "year": 1933,
    "date_published": "1934-09-03",
    "duration": 96,
    "description": "A gangster tries to make Apple Annie, the Times Square apple seller, a lady for a day.",
    "long_description": "Apple Annie is an indigent woman who has always written to her daughter in Spain that she is a member of New York's high society. With her daughter suddenly en route to America with her new fiancé and his father, a member of Spain's aristocracy, Annie must continue her pretense of wealth or the count will not give his blessing. She gets unexpected help from Dave the Dude, a well-known figure in underground circles who considers Annie his good luck charm, and who obtains for her a luxury apartment to entertain the visitors - but this uncharacteristic act of kindness from a man with a disreputable reputation arouses suspicions, leading to complications which further cause things to not always go quite as planned.",
    "avg_vote": "7.4",
    "imdb_score": "7.4",
    "votes": 3754,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 37,
    "reviews_from_critics": 25,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTA4MjUxOTMwMTNeQTJeQWpwZ15BbWU4MDYyNjMwNDIx._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Barry Norton",
        "Glenda Farrell",
        "Guy Kibbee",
        "Halliwell Hobbes",
        "Hobart Bosworth",
        "Jean Parker",
        "May Robson",
        "Nat Pendleton",
        "Ned Sparks",
        "Robert Emmett O'Connor",
        "Walter Connolly",
        "Warren William"
    ],
    "directors": [
        "Frank Capra"
    ],
    "writers": [
        "Damon Runyon",
        "Robert Riskin"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Columbia Pictures"
}