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

{
    "id": 24238,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24238?format=api",
    "title": "Recluse",
    "original_title": "Ladies They Talk About",
    "year": 1933,
    "date_published": "1933-02-04",
    "duration": 69,
    "description": "Attractive Nan, member of a bank-robbery gang, goes to prison thanks to evangelist Dave Slade...who loves her.",
    "long_description": "Gun moll Nan Taylor, caught after an otherwise successful bank robbery, falls for radio crusader David Slade and confides her guilt to him. Much to her surprise, he turns her in. As a \"new fish\" at San Quentin, Nan fits right in, but won't see Slade, who still loves her. Then she learns that her former partners in crime, Don and Dutch, are on the other side of the wall in the men's section...and have an escape plan.",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 1332,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 29,
    "reviews_from_critics": 23,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMWI5Nzg3YjEtY2UzNy00MmEzLWE0NGQtYWUwNzJmOTRiZmUxXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Barbara Stanwyck",
        "Dorothy Burgess",
        "Harold Huber",
        "Lillian Roth",
        "Lyle Talbot",
        "Maude Eburne",
        "Preston Foster",
        "Robert McWade",
        "Ruth Donnelly"
    ],
    "directors": [
        "Howard Bretherton",
        "William Keighley"
    ],
    "writers": [
        "Brown Holmes",
        "William McGrath"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}