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

{
    "id": 23759,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23759?format=api",
    "title": "Ann Vickers",
    "original_title": "Ann Vickers",
    "year": 1933,
    "date_published": "1933-10-06",
    "duration": 76,
    "description": "A prison reformer and a controversial judge fall in love and have a child out of wedlock.",
    "long_description": "During WWI, Ann Vickers, a humanitarian who is just starting the adult phase of her life, wants to make a difference in the world - using her friend Dr. Malvina Wormser as a role model - but she also wants a fulfilling personal life. She isn't sure if she can accomplish both at the same time. So after a failed relationship with soldier Captain Lafe Resnick which includes a deeper personal tragedy for her, Ann decides instead to focus solely on her career. With a background in nursing and social work, she decides the area of her work will be in prison reform. Her lofty goals do not sit well with many of the male traditionalists in the field, they who may stop her from accomplishing what she wants, at her own personal reputation at risk. Although she has a multitude of wannabe suitors, it isn't until she meets Supreme Court judge Barney Dolphin that she contemplates having that fulfilling personal life at the same time as having a career. But the road to a possible happy ending for Ann ...",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 557,
    "metascore": null,
    "budget": 303000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 17,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZmI1NmY4ZWUtZTg5Ny00NDk3LWE3NzktNjEzZTAxMjM5MTI1XkEyXkFqcGdeQXVyMTIxOTk5MzY@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Bruce Cabot",
        "Conrad Nagel",
        "Edna May Oliver",
        "Gertrude Michael",
        "Helen Eby-Rock",
        "Irene Dunne",
        "J. Carrol Naish",
        "Mitchell Lewis",
        "Murray Kinnell",
        "Rafaela Ottiano",
        "Reginald Barlow",
        "Sam Hardy",
        "Sarah Padden",
        "Walter Huston"
    ],
    "directors": [
        "John Cromwell"
    ],
    "writers": [
        "Jane Murfin",
        "Sinclair Lewis"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Radio Pictures"
}