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

{
    "id": 11576124,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11576124?format=api",
    "title": "Rogue",
    "original_title": "Rogue",
    "year": 2020,
    "date_published": "2020-08-28",
    "duration": 105,
    "description": "O'Hara is a mercenary leading a squad of soldiers on their mission to rescue hostages in remote part of Africa. Unfortunately the mission goes wrong and the team are stranded, forced to survive against the local rebels.",
    "long_description": "Megan Fox (Transformers franchise) tackles a thrilling new role as a battle-hardened mercenary in this explosive action saga. As team leader O'Hara, she leads a lively squad of soldiers on a daring mission: rescue hostages from their captors in remote Africa. But as the mission goes awry and the team is stranded, O'Hara's squad must face a bloody, brutal encounter with a gang of rebels - and the horde of ravenous, enraged lions they encounter.",
    "avg_vote": "3.8",
    "imdb_score": "3.8",
    "votes": 4070,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 62116,
    "reviews_from_users": 68,
    "reviews_from_critics": 9,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZWUyY2M2M2UtMGI1NC00ZjBmLWI5NDItYjQ1MThjNzgwMjhmXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Adam Deacon",
        "Ashish Gangapersad",
        "Austin Shandu",
        "Brandon Auret",
        "Calli Taylor",
        "Greg Kriek",
        "Isabel Bassett",
        "Jessica Sutton",
        "Kenneth Fok",
        "Lee-Anne Liebenberg",
        "Mangaliso Mazibuko",
        "Megan Fox",
        "Philip Winchester",
        "Sisanda Henna",
        "Tamer Burjaq"
    ],
    "directors": [
        "M.J. Bassett"
    ],
    "writers": [
        "Isabel Bassett",
        "M.J. Bassett"
    ],
    "genres": [
        "Action"
    ],
    "countries": [
        "South Africa",
        "UK"
    ],
    "languages": [
        "English"
    ],
    "rated": "R",
    "company": "Grindstone Entertainment Group"
}