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

{
    "id": 22436,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22436?format=api",
    "title": "Palcoscenico nella strada",
    "original_title": "Street Scene",
    "year": 1931,
    "date_published": "1931-09-05",
    "duration": 80,
    "description": "Twenty-four hours elapse on the stoop of a Hell's Kitchen tenement as a microcosm of the American melting pot interacts with each other during a summer heatwave.",
    "long_description": "In a hot summer afternoon in New York, Emma Jones gossips with other neighbors of her residential building about the affair of Mrs. Anna Maurrant and the milkman Steve Sankey. When the rude Mr. Frank Maurrant arrives, they change the subject. Meanwhile, their teenage daughter Rose Maurrant is sexually harassed by her boss Mr. Bert Easter; however, she likes her Jewish neighbor Sam that has a crush on her. On the next morning, Frank tells that is traveling to Stanford on business. Mrs. Maurrant meets the gentle Sankey in her apartment, but out of the blue Frank comes back home in an announced tragedy.",
    "avg_vote": "7.6",
    "imdb_score": "7.6",
    "votes": 1586,
    "metascore": null,
    "budget": 584000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 34,
    "reviews_from_critics": 17,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOGNjNTFkYzYtYTk5NC00ZjNmLTg5NTMtOWI4MDEzMjFlMTMzL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR9,0,182,268_AL_.jpg",
    "actors": [
        "Allen Fox",
        "Beulah Bondi",
        "David Landau",
        "Eleanor Wesselhoeft",
        "Estelle Taylor",
        "Greta Granstedt",
        "Margaret Robertson",
        "Matt McHugh",
        "Max Montor",
        "Nora Cecil",
        "Russell Hopton",
        "Sylvia Sidney",
        "Walter James",
        "Walter Miller",
        "William Collier Jr."
    ],
    "directors": [
        "King Vidor"
    ],
    "writers": [
        "Elmer Rice"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "The Samuel Goldwyn Company"
}