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

{
    "id": 9682,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/9682?format=api",
    "title": "Tarzan of the Apes",
    "original_title": "Tarzan of the Apes",
    "year": 1918,
    "date_published": "1918-01-27",
    "duration": 73,
    "description": "Reared by a childless ape, the orphaned heir of the Greystokes becomes one of the apes. Then, Dr Porter organises a rescue expedition, and his beautiful daughter, Jane, catches his attention. Has Tarzan of the Apes found the perfect mate?",
    "long_description": "Kohn and Alice Clayton set sail for Africa. Mutineers maroon them. After his parents die, the newborn Tarzan is taken by a great Ape, Kala. Later the boy finds his father's knife and uses it to become King of Apes. Binns, the sailor who saved the Claytons and who has been held by Arab slavers for ten years, finds the young Tarzan and then heads for England to notify his kin. A scientist arrives to check out Binns' story. Tarzan, now a man, kills the native who killed Kala; when their chief is killed the black villagers appease Tarzan with gifts and prayers. The scientist's daughter Jane is carried off by a native, rescued by Tarzan (who has burnt the native village), aggressively loved by him (\"Tarzan is a man, and men do not force the love of women\"), and at last accepts him with open arms.",
    "avg_vote": "5.7",
    "imdb_score": "5.7",
    "votes": 702,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 3270000,
    "worldwide_gross_income": null,
    "reviews_from_users": 14,
    "reviews_from_critics": 21,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNjg3OTkzNjMwOF5BMl5BanBnXkFtZTgwNTM2ODAyMjE@._V1_UY268_CR8,0,182,268_AL_.jpg",
    "actors": [
        "Bessie Toner",
        "Colin Kenny",
        "Elmo Lincoln",
        "Enid Markey",
        "Eugene Pallette",
        "Fred L. Wilson",
        "George B. French",
        "Gordon Griffith",
        "Jack Wilson",
        "Kathleen Kirkham",
        "Louis Morrison",
        "Thomas Jefferson",
        "True Boardman"
    ],
    "directors": [
        "Scott Sidney"
    ],
    "writers": [
        "Edgar Rice Burroughs",
        "Fred Miller"
    ],
    "genres": [
        "Action",
        "Adventure"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "None"
    ],
    "rated": "Not rated or unkown rating",
    "company": "National Film Corporation of America"
}