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

{
    "id": 15018,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15018?format=api",
    "title": "Isn't Life Wonderful",
    "original_title": "Isn't Life Wonderful",
    "year": 1924,
    "date_published": "1924-12-05",
    "duration": 115,
    "description": "A family of Polish refugees tries to survive in post-World War I Germany. For a while it seems that they are making it, but soon the economic and political deterioration in the country begins to take their toll.",
    "long_description": "The story follows a Polish professor and his family who have become refugees in the aftermath of World War I. They try to survive in Germany during the period of the Great Inflation. Carol Dempster is Inga, a Polish war orphan who struggles to provide for the family that has taken her in, while accumulating a meager dowry from the rubble of depression-stricken Berlin so that she can marry Paul. Returning to his family, weakened by the battlefront's poisonous gases, Paul invests in his and Inga's future by tending a secret garden which he hopes will provide the resources for them to live, and which serves as a symbol of optimism for the two young lovers.",
    "avg_vote": "6.9",
    "imdb_score": "6.8",
    "votes": 301,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 9,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BM2QzYTVlYmYtMjRhMC00YmQ2LWJkMGYtZTJhNmMwNjEzNzg2XkEyXkFqcGdeQXVyMjYxMzY2NDk@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Carol Dempster",
        "Erville Alderson",
        "Frank Puglia",
        "Hans Adalbert Schlettow",
        "Helen Lowell",
        "Lupino Lane",
        "Marcia Harris",
        "Neil Hamilton",
        "Paul Rehkopf",
        "Robert Scholtz",
        "Walter Plimmer"
    ],
    "directors": [
        "D.W. Griffith"
    ],
    "writers": [
        "D.W. Griffith",
        "Geoffrey Moss"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "D.W. Griffith Productions"
}