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

{
    "id": 23758,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23758?format=api",
    "title": "Ann Carver's Profession",
    "original_title": "Ann Carver's Profession",
    "year": 1933,
    "date_published": "1933-06-09",
    "duration": 71,
    "description": "After graduation from Hampden University, Bill \"Lightning\" Graham, a football star, and Ann Carver, who just passed her bar exam, marry. Instead of pursuing a career in law, Ann takes on ...",
    "long_description": "After graduation from Hampden University, Bill \"Lightning\" Graham, a football star, and Ann Carver, who just passed her bar exam, marry. Instead of pursuing a career in law, Ann takes on the role of housewife, while Bill is employed as a draftman. When Ann is asked to take on a highly profiled legal case, she accepts, and wins. She becomes an overnight success and a media darling. Meanwhile, Bill's career is stagnate and Ann is supporting him financially causing the couple to spend less time together. Bill decides to take a job at \"Club Mirador\" to make more money. Carole Rogers, a sexy alcoholic singer at the club is taken by Bill's good-looks, voice and physic. She makes a pass at him when Ann walks into the club leaving Ann with the impression that Bill is cheating on her. After Ann's accusations, Bill moves out. Carole knowing this, comes to Bill's apartment to seduce him. He rejects her and leaves. Carole becomes drunk and falls over his sofa catching her necklace on it and ...",
    "avg_vote": "5.9",
    "imdb_score": "5.9",
    "votes": 168,
    "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/MV5BMmQ1M2Y0NTUtZDAyZC00MzM1LTkzMjMtMjFjNzE5OTQyNDU5XkEyXkFqcGdeQXVyNTY4NjI2OTA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Pierson",
        "Claire Dodd",
        "Claude Gillingwater",
        "Fay Wray",
        "Frank Albertson",
        "Gene Raymond",
        "Jessie Ralph"
    ],
    "directors": [
        "Edward Buzzell"
    ],
    "writers": [
        "Robert Riskin"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Columbia Pictures"
}