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

{
    "id": 23992,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23992?format=api",
    "title": "Sempre nel mio cuore",
    "original_title": "Ever in My Heart",
    "year": 1933,
    "date_published": "1933-10-28",
    "duration": 68,
    "description": "World War I brings tribulations to an American woman married to a German.",
    "long_description": "In 1909 Mary Archer, daughter of small-town bluebloods, awaits the return from Germany of sometime beau Jeff. But Jeff brings with him a German friend, Hugo Wilbrandt, who loves and marries Mary. Hugo joins the faculty of a small college and the Wilbrandts prosper...until the advent of World War I brings a storm of anti-German hatred. Resulting troubles so embitter Hugo that he regrets his American citizenship...",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 626,
    "metascore": null,
    "budget": 243000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 24,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzY0OTA4NDgtNzEyZC00MzEyLTg4NjMtNmY3ODJhMDA2NGJjXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Barbara Stanwyck",
        "Clara Blandick",
        "Donald Meek",
        "Elizabeth Patterson",
        "Ethel Wales",
        "Frank Albertson",
        "Harry Beresford",
        "Laura Hope Crews",
        "Nella Walker",
        "Otto Kruger",
        "Ralph Bellamy",
        "Ronnie Cosby",
        "Ruth Donnelly",
        "Virginia Howell",
        "Willard Robertson"
    ],
    "directors": [
        "Archie Mayo"
    ],
    "writers": [
        "Bertram Millhauser",
        "Beulah Marie Dix"
    ],
    "genres": [
        "Drama",
        "Romance",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}