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

{
    "id": 15772,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15772?format=api",
    "title": "Aquila nera",
    "original_title": "The Eagle",
    "year": 1925,
    "date_published": "1925-11-08",
    "duration": 73,
    "description": "A wanted Russian lieutenant becomes a masked vigilante seeking vengeance upon the man who stole his family's land, only to fall for his charming daughter.",
    "long_description": "Vladimir Dubrouvsky, a lieutenant in the Russian army, catches the eye of Czarina Catherine II. He spurns her advances and flees, and she puts out a warrant for his arrest, dead or alive. Vladimir learns that his father's lands have been taken by the evil Kyrilla Troekouroff, and his father dies. He dons a black mask, and becomes the outlaw The Black Eagle. He enters the Troekouroff household disguised as a French instructor for Kyrilla's daughter Mascha. He is after vengeance, but instead falls in love with Mascha.",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 1739,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 323150,
    "worldwide_gross_income": null,
    "reviews_from_users": 28,
    "reviews_from_critics": 18,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWM3Y2RlNTItNmI5My00NWQzLWEzZDAtYzkzMmIwMjY4MDI1XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Albert Conti",
        "Carrie Clark Ward",
        "George Nichols",
        "James A. Marcus",
        "Louise Dresser",
        "Rudolph Valentino",
        "Vilma Bánky"
    ],
    "directors": [
        "Clarence Brown"
    ],
    "writers": [
        "Alexander Pushkin",
        "George Marion Jr."
    ],
    "genres": [
        "Action",
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Art Finance Corporation"
}