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

{
    "id": 24897,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24897?format=api",
    "title": "Blind Date",
    "original_title": "Blind Date",
    "year": 1934,
    "date_published": "1935-02-11",
    "duration": 72,
    "description": "A young woman is torn between a wealthy suitor who wants her body and the honest young man who wants what's best for her.",
    "long_description": "A class vs class tale of a model at a department store that supports her family who's torn between two rival beaus, a local garage mechanic she's known for years, and the wealthy son of the store's owner. Various hardships like losing her job, the rich boy's extended separation, and and accident at the garage pressure her to make a decision between them.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 207,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 8,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTY3NzExMzI3OF5BMl5BanBnXkFtZTgwMzE0ODgwMzE@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Ann Sothern",
        "Billie Seward",
        "Geneva Mitchell",
        "Henry Kolker",
        "Jane Darwell",
        "Joan Gale",
        "Mary Forbes",
        "Mickey Rooney",
        "Neil Hamilton",
        "Paul Kelly",
        "Spencer Charters",
        "Tyler Brooke"
    ],
    "directors": [
        "Roy William Neill"
    ],
    "writers": [
        "Ethel Hill",
        "Vida Hurst"
    ],
    "genres": [
        "Comedy",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Columbia Pictures"
}