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

{
    "id": 16481,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16481?format=api",
    "title": "Varieté",
    "original_title": "Varieté",
    "year": 1925,
    "date_published": "1926-01-31",
    "duration": 104,
    "description": "Prologue: The murderer \"Boss\" Huller - after having spent ten years in prison - breaks his silence to tell the warden his story. \"Boss\", a former trapeze artist, and his wife own a cheap ...",
    "long_description": "Prologue: The murderer \"Boss\" Huller - after having spent ten years in prison - breaks his silence to tell the warden his story. \"Boss\", a former trapeze artist, and his wife own a cheap side-show that displays ''erotic sensations''. But he longs for his former glamorous life in the circus. When he meets the orphan Berta-Marie, he falls under her spell and leaves his wife and young son behind. He makes Berta-Marie his partner in a new trapeze number. One day, the famous trapeze artist Artinelli takes note of them and engages them for his trapeze show in Berlin. Their salto mortale becomes an immediate sensation. Calculatedly and cold, Artinelli seduces Berta-Marie and destroys \"Boss'\" happiness.",
    "avg_vote": "7.4",
    "imdb_score": "7.4",
    "votes": 1043,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 709613,
    "worldwide_gross_income": null,
    "reviews_from_users": 13,
    "reviews_from_critics": 19,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTQ3ODk1OTA1NF5BMl5BanBnXkFtZTgwNzY4MjQ1MDI@._V1_UY268_CR12,0,182,268_AL_.jpg",
    "actors": [
        "Alex Hyde and his Original New York Jazz Orchestra",
        "Alice Hechy",
        "Charles Lincoln",
        "Emil Jannings",
        "Enrico Rastelli",
        "Georg Baselt",
        "Georg John",
        "Kurt Gerron",
        "Lya De Putti",
        "Maly Delschaft",
        "Paul Rehkopf",
        "The Flying Codonas",
        "Trude Hesterberg",
        "Warwick Ward",
        "Werner Krauss"
    ],
    "directors": [
        "Ewald André Dupont"
    ],
    "writers": [
        "Ewald André Dupont",
        "Felix Hollaender"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universum Film (UFA)"
}