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

{
    "id": 23872,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23872?format=api",
    "title": "Catturato",
    "original_title": "Captured!",
    "year": 1933,
    "date_published": "1933-08-19",
    "duration": 69,
    "description": "A British prisoner of war becomes imprisoned alongside his best friend from home, though he is unaware that while he was captured, the friend began an affair with his wife.",
    "long_description": "Captain Fred Allison has been in a German Prisoner of War Camp for a long time. It has been two years since he last saw Monica, a girl he met, married and bought a house with in six days before leaving for the front. It has also been a very long time since she had last wrote to him. A month after all the prisoners have been put into lock down after a failed prison break, two things change. One is that the camp gets a new commandant and the other is that Fred's oldest and dearest friend Digby shows up. While Fred is happy to see Digby, he says little about Monica, whom Fred speaks of constantly. Unable to tell Fred that Monica had fallen in love with him, Digby escapes back to his own lines. But because of a murder that occured during his escape, he may be facing the trial of his life and also the trial by Fred who found a letter that Monica wrote to Digby.",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 367,
    "metascore": null,
    "budget": 245000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjU4MTc4YmYtNmIwNi00OTNmLWJmMTAtNGE3OGZlYzZmOTRlXkEyXkFqcGdeQXVyNTY4NjI2OTA@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Hohl",
        "Bert Sprotte",
        "Douglas Fairbanks Jr.",
        "Frank Reicher",
        "Halliwell Hobbes",
        "Harry Cording",
        "J. Carrol Naish",
        "John Bleifer",
        "Joyce Coad",
        "Leslie Howard",
        "Margaret Lindsay",
        "Paul Lukas",
        "Philip Faversham",
        "Robert Barrat",
        "William Le Maire"
    ],
    "directors": [
        "Roy Del Ruth"
    ],
    "writers": [
        "Edward Chodorov",
        "Philip Gibbs"
    ],
    "genres": [
        "Drama",
        "Romance",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}