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

{
    "id": 20230,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20230?format=api",
    "title": "La nuova Babilonia",
    "original_title": "Novyy Vavilon",
    "year": 1929,
    "date_published": "1929-01-01",
    "duration": 120,
    "description": "In the beginning of the industrial revolution, the Paris Commune was established in 1871 against the rich and the powerful, and violently repressed by the army that remained faithful to a ...",
    "long_description": "In the beginning of the industrial revolution, the Paris Commune was established in 1871 against the rich and the powerful, and violently repressed by the army that remained faithful to a tamer form of Republicanism. How could the love story between a young sales girl and a soldier unable to decide if he was pro or against the radical fashion? Two short months were needed for the answer to be found - in blood and tears, and under rain that washes all past memories. Any day, a New Babylon shop will open with frilly things for the bourgeois girls. The washerwomen will be there to wash them.",
    "avg_vote": "7.3",
    "imdb_score": "7.3",
    "votes": 738,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 7,
    "reviews_from_critics": 13,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTQ3ODAwNDcxMV5BMl5BanBnXkFtZTgwNTU1NDc0MjE@._V1_UY268_CR10,0,182,268_AL_.jpg",
    "actors": [
        "A. Glushkova",
        "Andrei Kostrichkin",
        "Arnold Arnold",
        "David Gutman",
        "Emil Gal",
        "Lyudmila Semyonova",
        "Oleg Zhakov",
        "Pyotr Sobolevsky",
        "S. Gusev",
        "Sergey Gerasimov",
        "Sofiya Magarill",
        "Vsevolod Pudovkin",
        "Yanina Zheymo",
        "Yelena Kuzmina",
        "Yevgeni Chervyakov"
    ],
    "directors": [
        "Grigoriy Kozintsev",
        "Leonid Trauberg"
    ],
    "writers": [
        "Grigoriy Kozintsev",
        "Leonid Trauberg"
    ],
    "genres": [
        "Drama",
        "History"
    ],
    "countries": [
        "Soviet Union"
    ],
    "languages": [
        "Russian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Sovkino"
}