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

{
    "id": 20985,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20985?format=api",
    "title": "Holiday",
    "original_title": "Holiday",
    "year": 1930,
    "date_published": "1930-07-03",
    "duration": 91,
    "description": "Holiday is a 1930 American Pre-Code romantic comedy film which tells the story of a young man who is torn between his free-thinking lifestyle and the tradition of his wealthy fiancée's family.",
    "long_description": "After a whirlwind ten day courtship following their meeting while on respective vacations in Lake Placid, socialite Julia Seton and Johnny Case, a happy-go-lucky white collar working stiff with some business acumen, decide to get married immediately. It isn't until Julia needs to tell her Manhattan-based family - widowed father Edward Seton, brother Ned Seton and sister Linda Seton - of their engagement that Johnny learns of Julia's upper crust status. Edward is able to check out Johnny's background before giving his approval, he hoping Johnny is like his own father who was self-made. However, free-spirited Linda sees in Johnny the boost of joie de vivre the Seton family desperately needs. Despite being happy for Julia and her approval of Johnny as a prospective member of the family, Linda laments losing in Julia one of her comrades in arms in the battle against the conservative repression within the Seton family, led by their father, and their cousins Seton and Laura Cram. What ...",
    "avg_vote": "6.4",
    "imdb_score": "6.5",
    "votes": 373,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjMzOTI2ODczNV5BMl5BanBnXkFtZTgwNTA3MzU2MzE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Ann Harding",
        "Creighton Hale",
        "Edward Everett Horton",
        "Elizabeth Forrester",
        "Hallam Cooley",
        "Hedda Hopper",
        "Mabel Forrest",
        "Mary Astor",
        "Monroe Owsley",
        "Robert Ames",
        "William Holden"
    ],
    "directors": [
        "Edward H. Griffith"
    ],
    "writers": [
        "Horace Jackson",
        "Philip Barry"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Pathé Exchange"
}