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

{
    "id": 10888514,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10888514?format=api",
    "title": "Noura Rêve",
    "original_title": "Noura Rêve",
    "year": 2019,
    "date_published": "2019-11-13",
    "duration": 92,
    "description": "With her abusive husband in jail and a coveted divorce pending, hardworking Noura can almost grasp a happy, new life with lover Lassaad - but when the best-laid plans are upended, Noura must tap her unshakable will to fulfill her dream.",
    "long_description": "5 days is the time left before the divorce between Noura (Hind Sabri) and Jamal (Lotfi Abdelli), a recidivist convict, is pronounced. Noura who dreams of freedom will then be able to live fully with her lover Lassad (Hakim Boumsaoudi). But Jamal is released sooner than expected, and Tunisian law severely punishes adultery: Noura will have to juggle between her work, her children, her husband, her lover, and challenge justice .",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 256,
    "metascore": null,
    "budget": 50000,
    "budget_currency": "EUR",
    "usa_gross_income": null,
    "worldwide_gross_income": 80675,
    "reviews_from_users": null,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYmNhNzFmNWQtZTEyNy00NjM3LTlkYWEtZWMwMjA3NTBiZDMzXkEyXkFqcGdeQXVyNjgzMjQ0MTA@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Achref Ben Youssef",
        "Belhassen Harbaoui",
        "Fedi Kahlaoui",
        "Hakim Boumsaoudi",
        "Hind Sabri",
        "Ikbel Harbaoui",
        "Imen Cherif",
        "Jamel Sassi",
        "Latifa Bida",
        "Linda Turki",
        "Lotfi Abdelli",
        "Meriem Zitouni",
        "Moncef Ajengui",
        "Ons Ben Azouz",
        "Seifeddine Dhrif"
    ],
    "directors": [
        "Hinde Boujemaa"
    ],
    "writers": [
        "Hinde Boujemaa",
        "Laurent Brandenbourger"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Belgium",
        "France",
        "Netherlands",
        "Qatar",
        "Tunisia"
    ],
    "languages": [
        "Arabic"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Propaganda Production"
}