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

{
    "id": 19152,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19152?format=api",
    "title": "The Mating Call",
    "original_title": "The Mating Call",
    "year": 1928,
    "date_published": "1928-07-21",
    "duration": 72,
    "description": "A WWI vet takes on the KKK when he loses his wife to a womanizing Klansman.",
    "long_description": "Farmer turned WWI hero Leslie returns home hoping to reunite with his wife Rose, but it turns out her parents had the unconsummated marriage annulled so she could wed the rich Lon Henderson. Rose throws herself at Leslie, itching for an affair due to her husband's penchant for infidelity, but he spurns her, marrying a young French immigrant named Catherine to get her off his back. When one of Lon's lovers commits suicide after he has cast her aside, he pins it all on Les and has his KKK-inspired group take action against him...",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 343,
    "metascore": null,
    "budget": 400000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 25,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYWViMGU4NmUtNDI0Yy00ZmVkLWI3MDItODg1NDEwMzlkNzZjXkEyXkFqcGdeQXVyMTYzMTY1MjQ@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Alan Roscoe",
        "Cyril Chadwick",
        "Evelyn Brent",
        "Gardner James",
        "Helen Foster",
        "Luke Cosgrave",
        "Renée Adorée",
        "Thomas Meighan"
    ],
    "directors": [
        "James Cruze"
    ],
    "writers": [
        "Rex Beach",
        "Walter Woods"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "The Caddo Company"
}