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

{
    "id": 11010144,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11010144?format=api",
    "title": "Seriously Single",
    "original_title": "Seriously Single",
    "year": 2020,
    "date_published": "2020-07-31",
    "duration": 107,
    "description": "Dineo is the definition of serial monogamist. She dates to fall in love; she falls in love to get married. But she never gets married. She always ends up being dumped. When she meets Lunga ...",
    "long_description": "Dineo is the definition of serial monogamist. She dates to fall in love; she falls in love to get married. But she never gets married. She always ends up being dumped. When she meets Lunga Sibiya, he seems to be the man she's waited her whole life for, a man who shares her values when it comes to love and relationships. Or so she thinks - Until she accidentally finds out that the man she was busy planning her forever with, had been planning his forever with someone else. After a messy breakup with Lunga, her commitment-phobic bestie, Noni, helps Dineo face what she dreads most: life as a single woman. Forced to move out of Lunga's apartment, Dineo seeks refuge with Noni. But letting go of another failed relationship is hard for Dineo. Now at her lowest point, Noni encourages Dineo to enjoy the spoils of singledom. Have fun. Meet new people. Become her own person. It's an intimidating notion for Dineo. She hasn't been single in years. But Noni is happy to be her guide. Together, they ...",
    "avg_vote": "4.2",
    "imdb_score": "4.3",
    "votes": 997,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 40,
    "reviews_from_critics": 17,
    "image_url": "https://m.media-amazon.com/images/M/MV5BODA0YzAzOTItZDZmNS00YmRmLTllNjQtMGU3ZjZlNGFjMjM4XkEyXkFqcGdeQXVyODE5NTc1MjM@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Bohang Moeko",
        "Fulu Mugovhani",
        "Mpho Osei Tutu",
        "Tiffany Barbuzano",
        "Tumi Morake",
        "Yonda Thomas"
    ],
    "directors": [
        "Katleho Ramaphakela",
        "Rethabile Ramaphakela"
    ],
    "writers": [
        "Lwazi Mvusi"
    ],
    "genres": [
        "Comedy",
        "Romance"
    ],
    "countries": [
        "South Africa"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Burnt Onion Productions"
}