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

{
    "id": 18297,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18297?format=api",
    "title": "Quality Street",
    "original_title": "Quality Street",
    "year": 1927,
    "date_published": "1927-11-01",
    "duration": 115,
    "description": "A fresh young beauty becomes an old maid waiting for her suitor to return from the Napoleonic wars. When he returns, clearly disappointed, she disguises herself as her own niece in order to test his loyalty.",
    "long_description": "A young British doctor leaves his fiancé to go off and fight in the Napoleonic wars. Upon his return ten years later, he finds the the beautiful young girl he knew is now a tired, aging schoolteacher and he is no longer interested in her. She is still in love with him, however, and rather than give him up, she \"reinvents\" herself as her younger, perkier \"niece\" Livvy and tries to regain his interest.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 730,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 6,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZDNhZjZkMzUtNjVhYy00N2ZjLWJhOTEtMmIzYmZkYzVkMjcxXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Conrad Nagel",
        "Flora Finch",
        "Helen Jerome Eddy",
        "Kate Price",
        "Marcelle Corday",
        "Margaret Seddon",
        "Marion Davies"
    ],
    "directors": [
        "Sidney Franklin"
    ],
    "writers": [
        "J.M. Barrie",
        "Marian Ainslee"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Cosmopolitan Productions"
}