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

{
    "id": 23887,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23887?format=api",
    "title": "Il prezzo del piacere",
    "original_title": "Child of Manhattan",
    "year": 1933,
    "date_published": "1936-04-10",
    "duration": 70,
    "description": "Paul Vanderkill is extraordinarily wealthy because his grandfather happened to buy farmland in what was to become Midtown Manhattan. The Loveland Dance Hall is one of the tenants of the ...",
    "long_description": "Paul Vanderkill is extraordinarily wealthy because his grandfather happened to buy farmland in what was to become Midtown Manhattan. The Loveland Dance Hall is one of the tenants of the Vanderkill estates. To reassure his aunt Sophie, Vanderkill visits Loveland to determine whether it is as disreputable as Sophie suspects. There he meets a dime-a-dance girl, Madeleine MacGonagal, who charms him with her quaint proletarian accent. They begin a secret affair, which turns into a secret marriage when pregnancy ensues. When the baby fails to survive, Madeleine decides that since he had married her only for the baby's sake, she should make haste to Mexico to secure a divorce. There she meets Panama Canal Kelly, a former suitor who now owns a silver mine. Her plans for divorce and quick remarriage are complicated when Vanderkill arrives to confront her.",
    "avg_vote": "6.6",
    "imdb_score": "6.5",
    "votes": 218,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZmYzMDAzZjctMTZmOS00YjJiLWIxODYtMWFkMTNjMDA0ZGQ1XkEyXkFqcGdeQXVyNTY4NjI2OTA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Betty Grable",
        "Buck Jones",
        "Clara Blandick",
        "Edward LeSaint",
        "Garry Owen",
        "Jane Darwell",
        "Jessie Ralph",
        "John Boles",
        "Luis Alberni",
        "Nancy Carroll",
        "Nat Pendleton",
        "Warburton Gamble"
    ],
    "directors": [
        "Edward Buzzell"
    ],
    "writers": [
        "Gertrude Purcell",
        "Maurine Dallas Watkins"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Columbia Pictures"
}