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

{
    "id": 19130,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19130?format=api",
    "title": "L'uomo che ride",
    "original_title": "The Man Who Laughs",
    "year": 1928,
    "date_published": "1929-02-01",
    "duration": 110,
    "description": "When a proud noble refuses to kiss the hand of the despotic King James in 1690, he is cruelly executed and his son surgically disfigured.",
    "long_description": "Forever disfigured by a wide and mirthless grin on his face, the orphaned son of a nobleman, Gwynplaine, rescues the blind baby-girl, Dea, in cold seventeenth-century England. Taken in by the paternal carnival philosopher, Ursus, the unloved boy grows into a kind and honest man who chooses, however, to hide his grotesque deformity behind a black cloak, utterly convinced that the beautiful Dea will never truly love him because of his horrible secret. Feeling unworthy of Dea's noble feelings, Gwynplaine will soon cross paths with the aristocratic temptress, Duchess Josiana, as a cruel and long-standing conspiracy in the palace of Queen Anne presents him with the burden of choice. Will poor Gwynplaine, the Man who Laughs, renounce everything in the name of love?",
    "avg_vote": "7.7",
    "imdb_score": "7.7",
    "votes": 5927,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 4347,
    "reviews_from_users": 66,
    "reviews_from_critics": 40,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOWRjODkxYmMtNjlhNS00NmEzLWFiMmUtZTA5NjJkM2Y3M2E0XkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Brandon Hurst",
        "Cesare Gravina",
        "Conrad Veidt",
        "Delmo Fritz",
        "Deno Fritz",
        "George Siegmann",
        "Josephine Crowell",
        "Julius Molnar",
        "Károly Huszár",
        "Mary Philbin",
        "Olga Baclanova",
        "Sam De Grasse",
        "Stuart Holmes",
        "Zimbo the Dog"
    ],
    "directors": [
        "Paul Leni"
    ],
    "writers": [
        "J. Grubb Alexander",
        "Victor Hugo"
    ],
    "genres": [
        "Drama",
        "Horror",
        "Mystery"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universal Pictures"
}