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

{
    "id": 21633,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21633?format=api",
    "title": "The Bachelor Father",
    "original_title": "The Bachelor Father",
    "year": 1931,
    "date_published": "1931-01-10",
    "duration": 90,
    "description": "Old man invites three of his illegitimate children to live with him.",
    "long_description": "Lonely in his English country estate, Sir Basil decides to gather his grown (albeit illegitimate) children around him in his declining years. He uses a ledger which keeps track of the payments he has been making to ex-lovers to locate 2 of them, and a third is found by a lawyer in New York, her mother was too proud to accept any money. Sir Basil is a curmudgeon, and his three adult children have a hard time with him at first. Toni, the American, is a free spirit who had a budding career in show business. Jeffery is English and a semi-gentleman, and Maria is Italian, with a Latin temperament. They begin to bond, especially Sir Basil and Toni, whose outgoing personality finally wins over the old man. But past lives begin to creep back into the picture and threaten the old man's plans for a life filled with his children.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 1038,
    "metascore": null,
    "budget": 502000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTgwMmYyODgtNjgwYi00NDQ5LTkwMWMtYzdlMzc2ZmY1ZmMyXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "C. Aubrey Smith",
        "David Torrence",
        "Doris Lloyd",
        "Edgar Norton",
        "Elizabeth Murray",
        "Guinn 'Big Boy' Williams",
        "Halliwell Hobbes",
        "James Gordon",
        "Marion Davies",
        "Nina Quartero",
        "Ralph Forbes",
        "Ray Milland"
    ],
    "directors": [
        "Robert Z. Leonard"
    ],
    "writers": [
        "Edward Childs Carpenter",
        "Laurence E. Johnson"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Cosmopolitan Productions"
}