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

{
    "id": 11020466,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11020466?format=api",
    "title": "Vanamehe film",
    "original_title": "Vanamehe film",
    "year": 2019,
    "date_published": "2019-09-24",
    "duration": 88,
    "description": "This is an inter-generational epic road movie that should wipe the dust from ancient folk wisdom that milk, it's a big responsibility.",
    "long_description": "Grandchildren come to visit the Old Man in the countryside for the summer. It is far from an idyllic summer vacation at the Vanaisa, because the Old Man is working hard on both the children and his dairy cow. The thugs don't understand the rural customs and cause and the children have 24 hours to find the cow before the unmilked udder explodes and causes a milk core disaster.The old man and the children start a ruthless race in time because the udder must be defused before the mysterious Dairy Cow sends the cow to the heavenly meadow. with despicable hipsters in the countryside, wild boars, desperate sawmillers and a stubborn bear suffering from constipation.",
    "avg_vote": "5.8",
    "imdb_score": "5.9",
    "votes": 369,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 2,
    "reviews_from_critics": 9,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDZjOWMzNWUtODUyZS00ZDk2LTg4MDAtYzFjODAxMzVlYmJmXkEyXkFqcGdeQXVyMTA4MTM2OTAx._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Indrek Ojari",
        "Jaagup Kreem",
        "Jan Uuspõld",
        "Kristjan Lüüs",
        "Mart Kukk",
        "Mikk Mägi",
        "Märt Avandi",
        "Oskar Lehemaa"
    ],
    "directors": [
        "Mikk Mägi",
        "Oskar Lehemaa"
    ],
    "writers": [
        "Mikk Mägi",
        "Oskar Lehemaa"
    ],
    "genres": [
        "Animation",
        "Comedy"
    ],
    "countries": [
        "Estonia"
    ],
    "languages": [
        "Estonian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Apollo Film Productions"
}