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

{
    "id": 19074,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19074?format=api",
    "title": "Ridi pagliaccio",
    "original_title": "Laugh, Clown, Laugh",
    "year": 1928,
    "date_published": "1928-04-14",
    "duration": 73,
    "description": "A professional clown and a self-indulgent count learn to help each other with their problems, but then become romantic rivals.",
    "long_description": "As professional clowns Tito and Simon are traveling, they happen upon an abandoned child, whom they take in and name Simonetta. When Simonetta is older, she becomes a circus performer herself. One day she is looking for roses, and climbs into the garden of Count Luigi Ravelli. The count becomes infatuated with her, but she leaves as soon as possible. Sometime later, Ravelli consults a doctor about his fits of uncontrollable laughter, and there he meets Tito, who has come to seek help for his fits of uncontrollable weeping. The two decide to help each other, and they establish a friendship, but problems arise when they realize that they are both in love with Simonetta.",
    "avg_vote": "7.6",
    "imdb_score": "7.6",
    "votes": 1697,
    "metascore": null,
    "budget": 293000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 47,
    "reviews_from_critics": 12,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTk1MjEzOTc4Ml5BMl5BanBnXkFtZTgwODU1NDM4MTE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Bernard Siegel",
        "Cissy Fitzgerald",
        "Gwen Lee",
        "Lon Chaney",
        "Loretta Young",
        "Nils Asther"
    ],
    "directors": [
        "Herbert Brenon"
    ],
    "writers": [
        "David Belasco",
        "Tom Cushing"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}