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

{
    "id": 13688,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/13688?format=api",
    "title": "The Toll of the Sea",
    "original_title": "The Toll of the Sea",
    "year": 1922,
    "date_published": "1923-01-22",
    "duration": 54,
    "description": "While visiting China, an American man falls in love with a young Chinese woman, but he then has second thoughts about the relationship.",
    "long_description": "When young Lotus Flower sees an unconscious man floating in the water near the seashore, she quickly gets help for him. The man is Allen Carver, an American visiting China. Soon the two have fallen in love, and Carver promises to take her with him when he returns home. But Carver's friends discourage him from doing this, and he returns to the USA alone. By the time the two of them meet again, much has changed, and their reunion proves very trying for them both.",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 660,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 25,
    "reviews_from_critics": 12,
    "image_url": "https://m.media-amazon.com/images/M/MV5BN2M2NGIyMDUtY2Q4Ni00M2UyLWI0ZjEtYmI3MTM0MjJiZWJmXkEyXkFqcGdeQXVyNjU2OTUyODc@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Anna May Wong",
        "Beatrice Bentley",
        "Etta Lee",
        "Kenneth Harlan",
        "Ming Young",
        "Priscilla Moran"
    ],
    "directors": [
        "Chester M. Franklin"
    ],
    "writers": [
        "Frances Marion"
    ],
    "genres": [
        "Drama",
        "Family",
        "Fantasy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "None"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Technicolor"
}