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

{
    "id": 22495,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22495?format=api",
    "title": "Trader Horn",
    "original_title": "Trader Horn",
    "year": 1931,
    "date_published": "1931-05-23",
    "duration": 122,
    "description": "Two white traders in the darkest Africa of the 1870s find a missionary's daughter, who was captured as a child by a savage tribe and now worshiped as a goddess.",
    "long_description": "A veteran white trader in the darkest Africa of the 1870s mentors a younger companion on the mysteries of the Dark Continent. After meeting a missionary, they go in search of Nina, her kidnapped daughter, who was abducted by natives when she was young and now reigns over the savage tribe, regarded by them as a goddess. When the two men are captured and slated for horrible death by her people, she rescues them, and the trio flees the pursuing tribesmen through savage country.",
    "avg_vote": "6.2",
    "imdb_score": "6.2",
    "votes": 879,
    "metascore": null,
    "budget": 1312636,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 29,
    "reviews_from_critics": 14,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDY1YjcyZGQtZDU4Yi00NjZhLTk5YWUtNDQzNDk0YmIxOTA3XkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Bob Kortman",
        "Duncan Renaldo",
        "Edwina Booth",
        "Harry Carey",
        "Marjorie Rambeau",
        "Mutia Omoolu",
        "Olive Carey"
    ],
    "directors": [
        "W.S. Van Dyke"
    ],
    "writers": [
        "Dale Van Every",
        "Ethelreda Lewis"
    ],
    "genres": [
        "Action",
        "Adventure",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Swahili"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}