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

{
    "id": 25094,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/25094?format=api",
    "title": "Paradiso in fiore",
    "original_title": "Evergreen",
    "year": 1934,
    "date_published": "1934-04-01",
    "duration": 94,
    "description": "Harriet Green, a beloved and radiant music hall star of the Edwardian era, has a guilty secret: She has a baby daughter, born out of wedlock. Harriet leaves her public and flees to South ...",
    "long_description": "Harriet Green, a beloved and radiant music hall star of the Edwardian era, has a guilty secret: She has a baby daughter, born out of wedlock. Harriet leaves her public and flees to South Africa to raise her daughter quietly. The years pass, and now her daughter, Harriet Hawkes, returns to London as a young show-biz hopeful. Tommy, a wily publicity man, knowing that young Harriet is a dead ringer for her famous mother, convinces a theater producer to star her in a new revue as none other than the original Harriet Green, miraculously untouched by old age. The ruse works too well: Now the public believes Harriet is a well-preserved 60-year-old and Tommy is her son. The deception is more than merely inconvenient, because now Harriet and Tommy have secretly fallen in love.",
    "avg_vote": "6.7",
    "imdb_score": "6.8",
    "votes": 487,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 20,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjM3ODkzNjk4M15BMl5BanBnXkFtZTgwMjgzNjA1MjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Barry MacKay",
        "Betty Balfour",
        "Betty Shale",
        "Buddy Bradley",
        "Hartley Power",
        "Ivor McLaren",
        "Jessie Matthews",
        "Marjorie Brooks",
        "Patrick Ludlow",
        "Sonnie Hale"
    ],
    "directors": [
        "Victor Saville"
    ],
    "writers": [
        "Benn W. Levy",
        "Emlyn Williams"
    ],
    "genres": [
        "Comedy",
        "Musical",
        "Romance"
    ],
    "countries": [
        "UK"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Gaumont British Picture Corporation"
}