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

{
    "id": 18179,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18179?format=api",
    "title": "Mr. Wu",
    "original_title": "Mr. Wu",
    "year": 1927,
    "date_published": "1927-03-26",
    "duration": 91,
    "description": "When Mandarin Wu's unmarried daughter becomes pregnant by a young Englishman, he seeks vengeance.",
    "long_description": "Raised by his grandfather to adhere to the ancient laws of China, Mandarin Wu is a strict authoritarian. However, he is a doting father to his beautiful daughter Nang Ping. Nang Ping is to be married to a man of her father's choosing, a man she does not even know. But she falls in love with a dashing British visitor to China, Basil Gregory. Basil informs Nang Ping that he must return to Britain with his family, but she surprises him with the revelation that she carries his child. Wu learns of his daughter's dishonor and lets the ancient laws of China lead him relentlessly toward tragedy.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 527,
    "metascore": null,
    "budget": 267000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 19,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTYyMzk2ZjMtNTI3Zi00ZjlhLWE1OGYtZmU0ZmFiZGY3NzJlXkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Anna May Wong",
        "Claude King",
        "Gertrude Olmstead",
        "Holmes Herbert",
        "Lon Chaney",
        "Louise Dresser",
        "Mrs. Wong Wing",
        "Ralph Forbes",
        "Renée Adorée",
        "Sonny Loy"
    ],
    "directors": [
        "William Nigh"
    ],
    "writers": [
        "Harold Owen",
        "Maurice Vernon"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Mandarin"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}