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

{
    "id": 11905962,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11905962?format=api",
    "title": "Sputnik",
    "original_title": "Sputnik",
    "year": 2020,
    "date_published": "2020-07-24",
    "duration": 113,
    "description": "The lone survivor of an enigmatic spaceship incident hasn't returned back home alone-hiding inside his body is a dangerous creature.",
    "long_description": "At the height of the Cold War, a Soviet spacecraft crash lands after a mission gone awry, leaving the commander as its only survivor. After a renowned Russian psychologist is brought in to evaluate the commander's mental state, it becomes clear that something dangerous may have come back to Earth with him.",
    "avg_vote": "6.3",
    "imdb_score": "6.4",
    "votes": 10514,
    "metascore": "61.0",
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 18192,
    "worldwide_gross_income": 18192,
    "reviews_from_users": 112,
    "reviews_from_critics": 92,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOTI4ZmE4MDUtMTFjOS00NWNkLThkMzgtOTdmYzY4ODhmYTI0XkEyXkFqcGdeQXVyMTE1MzI2NzIz._V1_UY268_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Albrecht Zander",
        "Aleksandr Marushev",
        "Aleksey Demidov",
        "Anna Nazarova",
        "Anton Vasilev",
        "Fedor Bondarchuk",
        "Oksana Akinshina",
        "Pyotr Fyodorov",
        "Vasiliy Zotov",
        "Vitaliya Kornienko"
    ],
    "directors": [
        "Egor Abramenko"
    ],
    "writers": [
        "Andrei Zolotarev",
        "Oleg Malovichko"
    ],
    "genres": [
        "Drama",
        "Horror",
        "Sci-Fi"
    ],
    "countries": [
        "Russia"
    ],
    "languages": [
        "Latin",
        "Russian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Art Pictures Studio"
}