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

{
    "id": 23955,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23955?format=api",
    "title": "Doctor Bull",
    "original_title": "Doctor Bull",
    "year": 1933,
    "date_published": "1933-09-22",
    "duration": 77,
    "description": "Doc Bull, a no-nonsense country doctor who has served his community for decades, fights small-town prejudice and provincialism in several crises.",
    "long_description": "Dr. Bull is an old-fashioned country doctor whose affair with the widow Janet Cardmaker is creating waves in the small town where he practices. When there is a mysterious outbreak of typhoid which the doctor is slow in reacting to, it all comes to a head. The townspeople hold an emergency meeting and decide to give Dr. Bull the sack and bring in a new doctor. Dr. Bull must find a way to save his job, his reputation, and a young man's life, whom all other practitioners have written off as a permanent invalid.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 508,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 9,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZTdhMjg4ZGItNWFlYy00MmRlLTlkOTUtYzBiMmZiOWI2NmM0XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Andy Devine",
        "Berton Churchill",
        "Effie Ellsler",
        "Elizabeth Patterson",
        "Howard Lally",
        "Louise Dresser",
        "Marian Nixon",
        "Nora Cecil",
        "Patsy O'Byrne",
        "Ralph Morgan",
        "Rochelle Hudson",
        "Tempe Pigott",
        "Veda Buckland",
        "Vera Allen",
        "Will Rogers"
    ],
    "directors": [
        "John Ford"
    ],
    "writers": [
        "James Gould Cozzens",
        "Paul Green"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fox Film Corporation"
}