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

{
    "id": 21785,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21785?format=api",
    "title": "Daughter of the Dragon",
    "original_title": "Daughter of the Dragon",
    "year": 1931,
    "date_published": "1931-09-05",
    "duration": 70,
    "description": "Princess Ling Moy, a young and beautiful Chinese aristocrat lives next door, unbeknownst to her, to Dr. Fu Manchu, a brilliant but twisted genius who is out to rule the world. She is ...",
    "long_description": "Princess Ling Moy, a young and beautiful Chinese aristocrat lives next door, unbeknownst to her, to Dr. Fu Manchu, a brilliant but twisted genius who is out to rule the world. She is involved with Ah Kee, a handsome young man, who also unbeknownst to her, is a secret agent out to thwart the heinous plots of Fu Manchu. As it turns out, Fu is not only her next-door neighbor, he is also, (unbeknownst to her), her father. When she finds out, will she take her father's part and fight the men out to get Fu, or will she become a brave heroine and save the world even if it is from the devious doings of her own Dad? Yes, it's dated, and there isn't nearly enough of Warner Oland in it; but it moves along well, has a lot of action, Wong and Hayakawa were fine actors, and if you're a Charley Chan fan, it's worth it to how much, if any, of Fu Oland used when creating Charley Chan.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 373,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 19,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTM0OTQxMDcyMV5BMl5BanBnXkFtZTgwNTA1MDQ0MjE@._V1_UY268_CR18,0,182,268_AL_.jpg",
    "actors": [
        "Anna May Wong",
        "Bramwell Fletcher",
        "E. Alyn Warren",
        "Frances Dade",
        "Harold Minjir",
        "Holmes Herbert",
        "Lawrence Grant",
        "Nicholas Soussanin",
        "Sessue Hayakawa",
        "Warner Oland"
    ],
    "directors": [
        "Lloyd Corrigan"
    ],
    "writers": [
        "Lloyd Corrigan",
        "Monte M. Katterjohn"
    ],
    "genres": [
        "Crime",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}