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

{
    "id": 10955148,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10955148?format=api",
    "title": "Rising Free",
    "original_title": "Rising Free",
    "year": 2019,
    "date_published": "2019-12-06",
    "duration": 102,
    "description": "In late nineteenth-century America, Rising Free portrays the story of a young woman living in the aftermath of racial prejudice. Surrounded by danger of being sold and further stripped of ...",
    "long_description": "In late nineteenth-century America, Rising Free portrays the story of a young woman living in the aftermath of racial prejudice. Surrounded by danger of being sold and further stripped of freedom, she discovers hope through a gracious family and learns forgiveness and overwhelming mercy from her own transformation.",
    "avg_vote": "6.3",
    "imdb_score": "6.7",
    "votes": 823,
    "metascore": null,
    "budget": 100000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 22,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMGIxNTM4MTAtNTRlNS00NWIwLTg2MmItYzc3OWFiZDMyN2Y1XkEyXkFqcGdeQXVyMTA3Njg5OTYz._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Bob Grove",
        "Elias Kamplain",
        "Melanie Foust",
        "Samantha Droke",
        "Stephan Lunsford"
    ],
    "directors": [
        "Christian Johannesson"
    ],
    "writers": [
        "H.B. Johannesson"
    ],
    "genres": [
        "Drama",
        "History"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "PG-13",
    "company": "LightFall Motion Picture Group"
}