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

{
    "id": 15881,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15881?format=api",
    "title": "Rapacità",
    "original_title": "Greed",
    "year": 1924,
    "date_published": "1925-01-26",
    "duration": 140,
    "description": "The sudden fortune won from a lottery fans such destructive greed that it ruins the lives of the three people involved.",
    "long_description": "John McTeague was a simple slow man who became a dentist after working at the Big Dipper Gold Mine. He is now being hunted in Death Valley by his ex-best friend Marcus and the law. His lot was cast the day that he meet his future wife Trina in his office. She was with Marcus and she bought a lottery ticket. Well Mac fell for her and Marcus stepped aside. When Mac and Trina married, she won the Lottery for $5000 and became obsessive about the money in gold. Marcus is steamed as he stepped aside and now she is rich so he has the law shut down Mac as he has no official schooling for his dentistry. Trina fearful that they will take her gold away sells everything and takes all Mac earns when he is working. She adds to her stash of gold as they both live as paupers. When Mac has no job and no money, he leaves and Trina moves. Driven to desperation at being poor and hungry he finds Trina and demands the gold.",
    "avg_vote": "8.1",
    "imdb_score": "8.1",
    "votes": 9004,
    "metascore": null,
    "budget": 546883,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 88,
    "reviews_from_critics": 50,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNzFhZWQ1MjgtYTNmNy00ZjdhLWEwZDctMzJkYzE5YTQwNjIxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY268_CR8,0,182,268_AL_.jpg",
    "actors": [
        "Chester Conklin",
        "Dale Fuller",
        "Gibson Gowland",
        "Jean Hersholt",
        "Joan Standing",
        "Sylvia Ashton",
        "Tempe Pigott",
        "Zasu Pitts"
    ],
    "directors": [
        "Erich von Stroheim"
    ],
    "writers": [
        "Erich von Stroheim",
        "June Mathis"
    ],
    "genres": [
        "Drama",
        "Thriller",
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn Pictures Corporation"
}