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

{
    "id": 24211,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24211?format=api",
    "title": "Signore sole",
    "original_title": "The Keyhole",
    "year": 1933,
    "date_published": "1933-03-25",
    "duration": 69,
    "description": "Anne Brooks is being blackmailed by her old dancing partner Maurice. They married when she was young but broke up after which he said he was getting a quickie divorce. Anne married the much...",
    "long_description": "Anne Brooks is being blackmailed by her old dancing partner Maurice. They married when she was young but broke up after which he said he was getting a quickie divorce. Anne married the much older millionaire Schuyler Brooks only to have Maurice return to reveal he didn't obtain the divorce after all. Now he wants money to keep quiet. Anne reveals her secret to Schuyler's sister Portia who devises a scheme to trick Maurice into leaving the country by having Anne suddenly travel alone to Cuba. Once out of the country Portia will use her influence to block Maurice's return. However, Anne's request for a vacation by herself in Cuba arouses Schuyler's already simmering jealousy. He hires detective Neil Davis to follow her and prove whether or not she is faithful. Neil is unsuccessful in seducing Anne, then realizes he is falling in love with her.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 474,
    "metascore": null,
    "budget": 169000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 11,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZTgxYWE2ZTYtZDZjMy00N2Q2LTlhMDAtZGRjMjFiYzEzYTk0XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Allen Jenkins",
        "Billy Gilbert",
        "Ferdinand Gottschalk",
        "George Brent",
        "Glenda Farrell",
        "Helen Ware",
        "Henry Kolker",
        "Kay Francis",
        "Monroe Owsley"
    ],
    "directors": [
        "Michael Curtiz"
    ],
    "writers": [
        "Alice D.G. Miller",
        "Robert Presnell Sr."
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}