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

{
    "id": 10869364,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10869364?format=api",
    "title": "We Are Champions",
    "original_title": "We Are Champions",
    "year": 2019,
    "date_published": "2019-08-23",
    "duration": 118,
    "description": "Born into the bottom rungs of society, two teenage brothers with nothing but each other hope to change their fate through their love of basketball. Little brother Tung-hao joins an elite ...",
    "long_description": "Born into the bottom rungs of society, two teenage brothers with nothing but each other hope to change their fate through their love of basketball. Little brother Tung-hao joins an elite school and transforms into a dazzling superstar; big brother Hsiu-yu ends up on a ragtag squad about to be disbanded, finding an unexpected new brotherhood in his never-say-die teammates. Eventually, the brothers cross paths on their way to ultimate basketball glory - the HBL championship - where they will discover that some things are more important than winning.",
    "avg_vote": "7.2",
    "imdb_score": "7.2",
    "votes": 161,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 140937,
    "reviews_from_users": null,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDQxYzZmNTctOTlmOS00MzE2LWJiODktNTdkODcxZjA1Y2QzXkEyXkFqcGdeQXVyMTIwMzA3NDcx._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Berant Zhu",
        "Chun-hao Tuan",
        "David Wu",
        "Fandy Fan",
        "Tsung-Hua To",
        "Yi-Ching Lu"
    ],
    "directors": [
        "Jung-chi Chang"
    ],
    "writers": [
        "Jung-chi Chang",
        "Kun-Lin Tsai"
    ],
    "genres": [
        "Drama",
        "Sport"
    ],
    "countries": [
        "Taiwan"
    ],
    "languages": [
        "Chinese"
    ],
    "rated": "Not rated or unkown rating",
    "company": "We Are Champions Films"
}