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

{
    "id": 12364,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/12364?format=api",
    "title": "Il carrettiere della morte",
    "original_title": "Körkarlen",
    "year": 1921,
    "date_published": "1922-01-01",
    "duration": 107,
    "description": "On New Year's Eve, the driver of a ghostly carriage forces a drunken man to reflect on his selfish, wasted life.",
    "long_description": "It's New Year's Eve. Three drunkards evoke a legend. The legend tells that the last person to die in a year, if he is a great sinner, will have to drive during the whole year the Phantom Chariot, the one that picks up the souls of the dead... David Holm, one of the three drunkards, dies at the last stroke of midnight...",
    "avg_vote": "8.1",
    "imdb_score": "8.1",
    "votes": 10373,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 68,
    "reviews_from_critics": 82,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZmIwODBjOTYtMDhmNi00NmEyLTllYWMtNmQ2N2Q2NmRmOGNkXkEyXkFqcGdeQXVyOTUyODM3MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Algot Gunnarsson",
        "Astrid Holm",
        "Concordia Selander",
        "Einar Axelsson",
        "Hilda Borgström",
        "Hildur Lithman",
        "John Ekman",
        "Lisa Lundholm",
        "Nils Aréhn",
        "Nils Elffors",
        "Olof Ås",
        "Simon Lindstrand",
        "Tor Weijden",
        "Tore Svennberg",
        "Victor Sjöström"
    ],
    "directors": [
        "Victor Sjöström"
    ],
    "writers": [
        "Selma Lagerlöf",
        "Victor Sjöström"
    ],
    "genres": [
        "Drama",
        "Fantasy",
        "Horror"
    ],
    "countries": [
        "Sweden"
    ],
    "languages": [
        "Swedish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Svensk Filmindustri (SF)"
}