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

{
    "id": 15214,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15214?format=api",
    "title": "Paris qui dort",
    "original_title": "Paris qui dort",
    "year": 1924,
    "date_published": "1924-12-26",
    "duration": 59,
    "description": "A scientist's invisible ray freezes Paris into immobility.",
    "long_description": "Early roots of sci-fi magic are given to us in the form of a scientist who invents a ray that makes people caught in its beam fall asleep where they stand. With magical and wonderful shots of a Paris long gone, it is the adventure of a group of unaffected who with their sudden freedoms play the game of mice while the cat is away. With a narrative that sways toward a moralistic stance on the principles of fair play and responsibility, this little science fiction fable can still be poignant today as when the magnificent views were first shot from the dizzy heights of the Eiffel Tower.",
    "avg_vote": "7.2",
    "imdb_score": "7.2",
    "votes": 1566,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 13,
    "reviews_from_critics": 14,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOTdhYWM2YmQtZTgxZS00ZTJlLWJjYmUtOTZjYzU0NTY1ZWE5XkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UY268_CR7,0,182,268_AL_.jpg",
    "actors": [
        "Albert Préjean",
        "Antoine Stacquet",
        "Charles Martinelli",
        "Henri Rollan",
        "Louis Pré Fils",
        "Madeleine Rodrigue",
        "Marcel Vallée",
        "Myla Seller"
    ],
    "directors": [
        "René Clair"
    ],
    "writers": [
        "René Clair"
    ],
    "genres": [
        "Sci-Fi"
    ],
    "countries": [
        "France"
    ],
    "languages": [
        "French",
        "None"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Films Diamant"
}