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

{
    "id": 8710,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/8710?format=api",
    "title": "Tösen från Stormyrtorpet",
    "original_title": "Tösen från Stormyrtorpet",
    "year": 1917,
    "date_published": "1917-09-10",
    "duration": 87,
    "description": "Helga is a young single lady who has a baby by a much older married man. After the older man tells Helga's father that he refuses to pay child support because he isn't the child's father, ...",
    "long_description": "Helga is a young single lady who has a baby by a much older married man. After the older man tells Helga's father that he refuses to pay child support because he isn't the child's father, her father insists that Helga take him to court. On court day, just as the older married man is about to swear on the Bible that he is not the father of Helga's child, Helga suddenly tells the court that she's dropping the case because although the man did father her child, she doesn't want him to commit perjury, which is not only a serious crime but a mortal sin as well.",
    "avg_vote": "6.7",
    "imdb_score": "6.6",
    "votes": 149,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 1,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZWYzNjcwNDQtMzExOC00YzY4LWI0ZTAtNjBlODBjZmNiNGMxXkEyXkFqcGdeQXVyNzQxNDExNTU@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Concordia Selander",
        "Edla Rothgardt",
        "Georg Blomstedt",
        "Greta Almroth",
        "Gösta Cederlund",
        "Hjalmar Selander",
        "Jenny Tschernichin-Larsson",
        "Josua Bengtson",
        "Karin Molander",
        "Lars Hanson",
        "Nils Aréhn",
        "Thekla Borgh",
        "William Larsson"
    ],
    "directors": [
        "Victor Sjöström"
    ],
    "writers": [
        "Ester Julin",
        "Selma Lagerlöf"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Sweden"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Svenska Biografteatern AB"
}