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

{
    "id": 11110904,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11110904?format=api",
    "title": "Þorsti",
    "original_title": "Þorsti",
    "year": 2019,
    "date_published": "2019-10-25",
    "duration": 90,
    "description": "The drug addict Hulda is arrested accused of murdering her brother. After she is let go because of insufficient evidence, she meets Hjörtur, a thousand-year-old gay vampire. Together they ...",
    "long_description": "The drug addict Hulda is arrested accused of murdering her brother. After she is let go because of insufficient evidence, she meets Hjörtur, a thousand-year-old gay vampire. Together they have to fight a cult while being investigated by a rogue detective.",
    "avg_vote": "6.8",
    "imdb_score": "6.5",
    "votes": 220,
    "metascore": null,
    "budget": 10000000,
    "budget_currency": "ISK",
    "usa_gross_income": null,
    "worldwide_gross_income": 36389,
    "reviews_from_users": 10,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZTFjZWFhZWYtNDdkMS00YmVlLWExNzUtMzY5OTY5MjExYTg5XkEyXkFqcGdeQXVyMzU5MTE3OTM@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Birgitta Sigursteinsdóttir",
        "Birna Halldórsdóttir",
        "Blær Hinriksson",
        "Ester Sveinbjarnardóttir",
        "Halldóra Geirharðsdóttir",
        "Herra Hnetusmjör",
        "Hjörtur Sævar Steinason",
        "Hulda Lind Kristinsdóttir",
        "Jens Jensson",
        "Jón Gnarr",
        "Jón Jónsson",
        "Pálmi Gestsson",
        "Snorri Engilbertsson",
        "Svandis Dora Einarsdottir",
        "Ólafía Hrönn Jónsdóttir"
    ],
    "directors": [
        "Gaukur Úlfarsson",
        "Steinþór Hróar Steinþórsson"
    ],
    "writers": [
        "Björn Leó Brynjarsson"
    ],
    "genres": [
        "Comedy",
        "Horror"
    ],
    "countries": [
        "Iceland"
    ],
    "languages": [
        "Icelandic"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fenrir Films"
}