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

{
    "id": 11440,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11440?format=api",
    "title": "Markens grøde",
    "original_title": "Markens grøde",
    "year": 1921,
    "date_published": "1921-12-02",
    "duration": 107,
    "description": "After the Nobel prize winning Knut Hamsun-novel, with it's criticism of industrialization, urbanizing and loss of values. The farmer Isak makes a farm out of barren soil, together with Inger and their two sons. She kills the third.",
    "long_description": "After the Nobel prize winning Knut Hamsun-novel, with it's criticism of industrialization, urbanizing and loss of values. The farmer Isak makes a farm out of barren soil, together with Inger and their two sons. She kills the third.",
    "avg_vote": "6.6",
    "imdb_score": "6.5",
    "votes": 204,
    "metascore": null,
    "budget": 250000,
    "budget_currency": "NOK",
    "usa_gross_income": null,
    "worldwide_gross_income": 4272,
    "reviews_from_users": 3,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWE4MDJhMjEtMmFiMC00ZDYzLTkzN2QtNzQzMmEyMTkwNmRjL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTU5MDUxNjQ@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Almar Bjoernefjell",
        "Amund Rydland",
        "Ernst Vaumund",
        "Fordel Johnsen",
        "Gunnar Sommerfeldt",
        "Hans A. Meyer",
        "Inge Sommerfeldt",
        "Karen Poulsen",
        "Ragna Wettergreen",
        "Rolf Christensen",
        "Sigurd Berg Bruland",
        "Sigurd Eliasson",
        "Sigurd Køvatn",
        "Siljusson av Terna",
        "Sivert Eliassen"
    ],
    "directors": [
        "Gunnar Sommerfeldt"
    ],
    "writers": [
        "Gunnar Sommerfeldt",
        "Knut Hamsun"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Norway"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Christiana Film"
}