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

{
    "id": 15213,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15213?format=api",
    "title": "Papirosnitsa ot Mosselproma",
    "original_title": "Papirosnitsa ot Mosselproma",
    "year": 1924,
    "date_published": "1924-12-02",
    "duration": 78,
    "description": "As she works in her tedious office job, Maria Ivanovna dreams about being married, and she has particular hopes that her co-worker Nikodim Mityushin will take an interest in her. Nikodim, ...",
    "long_description": "As she works in her tedious office job, Maria Ivanovna dreams about being married, and she has particular hopes that her co-worker Nikodim Mityushin will take an interest in her. Nikodim, though, is in love with Zina, who sells cigarettes on the sidewalk, and he frequently buys cigarettes from her even though he does not smoke. One day, a film crew uses Zina as an extra in an outdoor scene, and the cameraman, Latugin, falls in love with her. Latugin soon arranges an acting job for Zina. To complicate matters further, Zina has yet another admirer in Oliver MacBride, an American businessman who is visiting Moscow.",
    "avg_vote": "6.8",
    "imdb_score": "6.7",
    "votes": 144,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 3,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjA2MTIwOTE5MV5BMl5BanBnXkFtZTgwNTk5MDgxMjE@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Anna Dmokhovskaya",
        "Igor Ilyinsky",
        "Leonid Baratov",
        "M. Tsybulsky",
        "Nikolai Tsereteli",
        "Nikolay Vishnyak",
        "Yuliya Solntseva"
    ],
    "directors": [
        "Yuri Zhelyabuzhsky"
    ],
    "writers": [
        "Aleksei Fajko",
        "Fyodor Otsep"
    ],
    "genres": [
        "Comedy",
        "Romance"
    ],
    "countries": [
        "Soviet Union"
    ],
    "languages": [
        "Russian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Mezhrabpom-Rus"
}