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

{
    "id": 9369,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/9369?format=api",
    "title": "Mickey",
    "original_title": "Mickey",
    "year": 1918,
    "date_published": "1918-08-01",
    "duration": 93,
    "description": "Mickey, an orphan who has been brought up in a mining settlement, is sent to New York to live with her aunt.",
    "long_description": "As the surviving partner in a gold mining enterprise, Joe Meadows has also been raising his deceased partner's daughter, Mickey. Now that she is older, Joe plans to send her to live with her aunt Mrs. Drake in New York. Meanwhile, Mrs. Drake is hoping to have her daughter Elsie marry another mine owner, Herbert Thornhill, in order to alleviate the Drake family's financial struggles. When Thornhill goes to California to check on his mine, he meets Mickey and becomes fond of her. Later, when Mickey goes to New York to stay with the Drakes, she finds herself in an uncomfortable situation.",
    "avg_vote": "5.9",
    "imdb_score": "5.9",
    "votes": 1061,
    "metascore": null,
    "budget": 125000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 18,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BN2IyZmM2MTgtYWJhNC00YmI1LWFkNTItYzNkN2IzMDNhOTliXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "George Nichols",
        "Laura La Varnie",
        "Lew Cody",
        "Mabel Normand",
        "Minnie Devereaux",
        "Minta Durfee",
        "Tom Kennedy",
        "Wheeler Oakman"
    ],
    "directors": [
        "F. Richard Jones",
        "James Young"
    ],
    "writers": [
        "Hampton Del Ruth",
        "J.G. Hawks"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Mabel Normand Feature Film Company"
}