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

{
    "id": 14646,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/14646?format=api",
    "title": "Aelita",
    "original_title": "Aelita",
    "year": 1924,
    "date_published": "1924-09-25",
    "duration": 111,
    "description": "A mysterious radio message is beamed around the world, and among the engineers who receive it are Los, the hero, and his colleague Spiridonov. Los is an individualist dreamer. Aelita is the...",
    "long_description": "A mysterious radio message is beamed around the world, and among the engineers who receive it are Los, the hero, and his colleague Spiridonov. Los is an individualist dreamer. Aelita is the daughter of Tuskub, the ruler of a totalitarian state on Mars in which the working class are put into cold storage when they are not needed. With a telescope, Aelita is able to watch Los. As if by telepathy, Los obsesses about being watched by her. After some hugger-mugger involving the murder of his wife and a pursuing detective, Los takes the identity of Spiridonov and builds a spaceship. With the revolutionary Gusev, he travels to Mars, but the Earthlings and Aelita are thrown into prison by the dictator. Gusev and Los begin a proletarian uprising, and Aelita offers to lead the revolution, but she then establishes her own totalitarian regime. Los is shocked by this development and attempts to stop Aelita, and then reality and fantasy become confused, and Los discovers what has really happened.",
    "avg_vote": "6.6",
    "imdb_score": "6.5",
    "votes": 2328,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 36,
    "reviews_from_critics": 31,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTQ1MDAxMjgzOF5BMl5BanBnXkFtZTgwOTAyMTM2MTE@._V1_UY268_CR87,0,182,268_AL_.jpg",
    "actors": [
        "Aleksandra Peregonets",
        "Igor Ilyinsky",
        "Iosif Tolchanov",
        "Konstantin Eggert",
        "Mikhail Zharov",
        "Nikolai Tsereteli",
        "Nikolay Batalov",
        "Pavel Pol",
        "Sofya Levitina",
        "Tamara Adelgeym",
        "Valentina Kuindzhi",
        "Varvara Massalitinova",
        "Vera Orlova",
        "Yuliya Solntseva",
        "Yuri Zavadsky"
    ],
    "directors": [
        "Yakov Protazanov"
    ],
    "writers": [
        "Aleksei Fajko",
        "Fyodor Otsep"
    ],
    "genres": [
        "Adventure",
        "Comedy",
        "Drama"
    ],
    "countries": [
        "Soviet Union"
    ],
    "languages": [
        "Russian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Mezhrabpom-Rus"
}