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

{
    "id": 7183,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/7183?format=api",
    "title": "Pikovaya dama",
    "original_title": "Pikovaya dama",
    "year": 1916,
    "date_published": "1916-04-01",
    "duration": 63,
    "description": "While hosting a game of cards one night, Narumov tells his friends a story about his grandmother, a Countess. As a young woman, she had once incurred an enormous gambling debt, which she ...",
    "long_description": "While hosting a game of cards one night, Narumov tells his friends a story about his grandmother, a Countess. As a young woman, she had once incurred an enormous gambling debt, which she was able to erase by learning a secret that guaranteed that she could win by playing her cards in a certain order. One of Narumov's friends, German, has never gambled, but he is intrigued by the story about the Countess and her secret. He soon becomes obsessed with learning this secret from her, and he starts by courting her young ward Lizaveta, hoping to use her to gain access to the Countess.",
    "avg_vote": "7.0",
    "imdb_score": "6.9",
    "votes": 621,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 144968,
    "reviews_from_users": 7,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BY2M2ZmNhOTgtNWNjMC00MGU3LTgzZTktMzJjMTJkYjFkNWE1XkEyXkFqcGdeQXVyMTc4MzI2NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Ivan Mozzhukhin",
        "Nikolai Panov",
        "Polycarpe Pavloff",
        "Tamara Duvan",
        "Vera Orlova",
        "Yelizaveta Shebueva"
    ],
    "directors": [
        "Yakov Protazanov"
    ],
    "writers": [
        "Alexander Pushkin",
        "Fyodor Otsep"
    ],
    "genres": [
        "Drama",
        "Fantasy",
        "Horror"
    ],
    "countries": [
        "Russia"
    ],
    "languages": [
        "Russian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Unknown"
}