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

{
    "id": 24262,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24262?format=api",
    "title": "Il piccolo gigante re dei gangsters",
    "original_title": "The Little Giant",
    "year": 1933,
    "date_published": "1933-05-20",
    "duration": 76,
    "description": "When Prohibition ends, a beer baron sees the writing on the wall, quits the rackets, and tries to break into California society.",
    "long_description": "Prohibition is ending so bootlegger Bugs Ahearn decides to crack California society. He leases a house from down-on-her-luck Ruth and hires her as social secretary. He rescues Polly Cass from a horsefall and goes home to meet her dad who sells him some phony stock certificates. When he learns about this he sends to Chicago for mob help.",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 1120,
    "metascore": null,
    "budget": 197000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 21,
    "reviews_from_critics": 9,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTg5ODUzMTE0OF5BMl5BanBnXkFtZTgwMjA3MzA5MDE@._V1_UY268_CR9,0,182,268_AL_.jpg",
    "actors": [
        "Berton Churchill",
        "Don Dillaway",
        "Edward G. Robinson",
        "Helen Vinson",
        "Kenneth Thomson",
        "Louise Mackintosh",
        "Mary Astor",
        "Russell Hopton",
        "Shirley Grey"
    ],
    "directors": [
        "Roy Del Ruth"
    ],
    "writers": [
        "Robert Lord",
        "Wilson Mizner"
    ],
    "genres": [
        "Comedy",
        "Crime",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}