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

{
    "id": 20589,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20589?format=api",
    "title": "Orchidea selvaggia",
    "original_title": "Wild Orchids",
    "year": 1929,
    "date_published": "1929-02-23",
    "duration": 100,
    "description": "A prince in Java tries to seduce his visitor's wife, but he's discovered.",
    "long_description": "Lillie Sterling comes with her husband, John, on a business trip to Java, expecting a second honeymoon. On the ship, she witnesses Javanese Prince De Gace mercilessly whipping a servant and shrinks in horror from the sight. When John is befriended by the Prince, who is very attracted to Lillie, she tries to have little to do with him. During a conversation in their room, John is called away to answer a wire, and the Prince steals a kiss in his absence, for which she slaps him. So she is understandably upset when John accepts the Prince's invitation to stay at his plantation in Java when he promised to arrange a tiger hunt. She tries to dissuade John from going, but John says he always wanted to shoot a tiger and she is being unreasonable. Once at the plantation, John is too busy to pay much attention to Lillie, and when he is away, the Prince tries to seduce her. Lillie flees in tears after another kiss, afraid of her own emotions. Finally, she embraces the Prince when he tries again,...",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 581,
    "metascore": null,
    "budget": 322000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 13,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNzYwM2MyYmUtYWUzYi00ODM2LWJiYmEtOGYzZTg5NzQ5NjVjXkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Greta Garbo",
        "Lewis Stone",
        "Nils Asther"
    ],
    "directors": [
        "Sidney Franklin"
    ],
    "writers": [
        "John Colton",
        "Willis Goldbeck"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}