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

{
    "id": 22469,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22469?format=api",
    "title": "Dieci soldi a danza",
    "original_title": "Ten Cents a Dance",
    "year": 1931,
    "date_published": "1931-03-06",
    "duration": 75,
    "description": "Men pay a dime to dance with Barbara and her fellow taxi dancers. She marries Eddie and plans to quit dancing. Before she does, she meets a handsome and rich gentleman.",
    "long_description": "Men pay a dime to dance with Barbara and her fellow taxi dancers. She marries Eddie and quits dancing, but before that, she meets with the handsome and very rich Bradley. Barbara eventually starts dancing again, since her marriage is plagued by financial tension, and Bradley begins visiting her again. Eddie becomes jealous, accusing his wife of infidelity. He sees that alleged infidelity as an excuse to steal money from Bradley.",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 657,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 23,
    "reviews_from_critics": 13,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTk0NjU1OTM1M15BMl5BanBnXkFtZTgwNjIzMDMyMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Al Hill",
        "Barbara Stanwyck",
        "Blanche Friderici",
        "David Newell",
        "Harry Todd",
        "Jack Byron",
        "Martha Sleeper",
        "Monroe Owsley",
        "Olive Tell",
        "Pat Harmon",
        "Phyllis Crane",
        "Ricardo Cortez",
        "Sally Blane",
        "Sidney Bracey",
        "Victor Potel"
    ],
    "directors": [
        "Edward Buzzell",
        "Lionel Barrymore"
    ],
    "writers": [
        "Jo Swerling"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Columbia Pictures"
}