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

{
    "id": 20142,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20142?format=api",
    "title": "L'isola del peccato",
    "original_title": "The Manxman",
    "year": 1929,
    "date_published": "1929-01-21",
    "duration": 110,
    "description": "A fisherman and a rising young lawyer, who grew up as brothers, fall in love with the same girl.",
    "long_description": "Despite their differing backgrounds, fisherman Pete and lawyer Philip have been life long friends on the Isle of Man. Pete wants to marry Kate, the landlord's daughter at the local inn, however Kate's father doesn't think he is good enough. Pete leaves the island to seek his fortune abroad and entrusts Kate to Philip, but they start to be attracted to each other.",
    "avg_vote": "6.2",
    "imdb_score": "6.2",
    "votes": 2583,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 50,
    "reviews_from_critics": 32,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZWYyMmEwNmYtYTc2My00NjA0LTlhMTgtMWUwZDNjNTI1NWUyXkEyXkFqcGdeQXVyNjMwMjk0MTQ@._V1_UY268_CR12,0,182,268_AL_.jpg",
    "actors": [
        "Anny Ondra",
        "Carl Brisson",
        "Clare Greet",
        "Malcolm Keen",
        "Randle Ayrton"
    ],
    "directors": [
        "Alfred Hitchcock"
    ],
    "writers": [
        "Eliot Stannard",
        "Hall Caine"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "Isle Of Man",
        "UK"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "British International Pictures (BIP)"
}