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

{
    "id": 22698,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22698?format=api",
    "title": "Venere bionda",
    "original_title": "Blonde Venus",
    "year": 1932,
    "date_published": "1933-02-07",
    "duration": 93,
    "description": "A cabaret singer takes up with a millionaire to pay for her gravely ill husband's operation.",
    "long_description": "American chemist Ned Faraday marries a German entertainer and starts a family. However, he becomes poisoned with Radium and needs an expensive treatment in Germany to have any chance at being cured. Wife Helen returns to night club work to attempt to raise the money and becomes popular as the Blonde Venus. In an effort to get enough money sooner, she prostitutes herself to millionaire Nick Townsend. While Ned is away in Europe, she continues with Nick but when Ned returns cured, he discovers her infidelity. Now Ned despises Helen but she grabs son Johnny and lives on the run, just one step ahead of the Missing Persons Bureau. When they do finally catch her, she loses her son to Ned. Once again she returns to entertaining, this time in Paris, and her fame once again brings her and Townsend together. Helen and Nick return to America engaged, but she is irresistibly drawn back to her son and Ned. In which life does she truly belong?",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 4343,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 54,
    "reviews_from_critics": 40,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNDMwYmZmZDYtMjA1NS00YzJkLWI2ODUtZTA2NTgwMGI3Mzc0L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR17,0,182,268_AL_.jpg",
    "actors": [
        "Cary Grant",
        "Dickie Moore",
        "Gene Morgan",
        "Herbert Marshall",
        "Marlene Dietrich",
        "Morgan Wallace",
        "Rita La Roy",
        "Robert Emmett O'Connor",
        "Sidney Toler"
    ],
    "directors": [
        "Josef von Sternberg"
    ],
    "writers": [
        "Jules Furthman",
        "S.K. Lauren"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French",
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}