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

{
    "id": 15684,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15684?format=api",
    "title": "The Circle",
    "original_title": "The Circle",
    "year": 1925,
    "date_published": "1925-09-22",
    "duration": 71,
    "description": "An unhappy woman considers leaving her dull husband for another man.",
    "long_description": "Elizabeth Cheney has a wealthy husband, social prominence and everything she could want in life . . . except Ted Lutton, the man she loves. Now, she must decide whether to give up everything and everyone to follow her heart in The Circle. At a time when divorce means a lifetime of banishment from family, friends and society--foregoing a life of ease for a life of hardship--Lady Elizabeth (Eleanor Boardman) wants to leave her husband, Arnold (Creighton Hale), for their friend Ted Lutton (Malcolm McGregor). To help convince herself to stay with her husband, she invites Arnold's mother, Lady Catherine (Eugenie Besserer), who left Arnold's father for Lord Porteous (George Fawcett). Everything that Elizabeth sees confirms her belief that she should forgo love and stay with her husband . . . until she witnesses the true love still shared by this couple living in social exile.",
    "avg_vote": "6.3",
    "imdb_score": "6.2",
    "votes": 516,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTQ0MzEwMjg1OF5BMl5BanBnXkFtZTgwMjc1NjY3NjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alec B. Francis",
        "Buddy Smith",
        "Creighton Hale",
        "Derek Glynne",
        "Eleanor Boardman",
        "Eugenie Besserer",
        "Eulalie Jensen",
        "Frank Braidwood",
        "George Fawcett",
        "Joan Crawford",
        "Malcolm McGregor",
        "Otto Hoffman"
    ],
    "directors": [
        "Frank Borzage"
    ],
    "writers": [
        "Kenneth B. Clarke",
        "W. Somerset Maugham"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}