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

{
    "id": 25091,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/25091?format=api",
    "title": "L'amante sconosciuta",
    "original_title": "Evelyn Prentice",
    "year": 1934,
    "date_published": "1934-11-09",
    "duration": 79,
    "description": "The neglected wife of a high profile attorney dallies with a unscrupulous womanizer and finds herself involved in blackmail and murder.",
    "long_description": "Evelyn Prentice is the respected wife of a high-profile New York attorney. Despite the prestige and status she enjoys, she feels neglected and out of boredom becomes involved with an unscrupulous womanizing poet, who gives her the attention she craves. She eventually finds herself a victim of blackmail and becomes involved in his murder. When another woman is accused of the crime, she begs her husband to defend her.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 1401,
    "metascore": null,
    "budget": 498000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 37,
    "reviews_from_critics": 14,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMGFkNTQwNTAtMDNjOS00MjcyLWI3NTgtOTQzYmQwODVlMzk2L2ltYWdlXkEyXkFqcGdeQXVyMTk2MzI2Ng@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Cora Sue Collins",
        "Edward Brophy",
        "Frank Conroy",
        "Harvey Stephens",
        "Henry Wadsworth",
        "Isabel Jewell",
        "Jessie Ralph",
        "Myrna Loy",
        "Rosalind Russell",
        "Una Merkel",
        "William Powell"
    ],
    "directors": [
        "William K. Howard"
    ],
    "writers": [
        "Lenore J. Coffee",
        "W.E. Woodward"
    ],
    "genres": [
        "Drama",
        "Mystery",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Cosmopolitan Productions"
}