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

{
    "id": 17438,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17438?format=api",
    "title": "Der Student von Prag",
    "original_title": "Der Student von Prag",
    "year": 1926,
    "date_published": "1926-12-26",
    "duration": 110,
    "description": "For Balduin, going out to beer parties with his fellow students and fighting out disputes at the tip of the sword have lost their charms. He wants to find love; but how would he, a ...",
    "long_description": "For Balduin, going out to beer parties with his fellow students and fighting out disputes at the tip of the sword have lost their charms. He wants to find love; but how would he, a penniless student, ever dare looking up to any woman worth of loving? Absorbed in his dreary thoughts and indifferent to the advances of Lyduschka, Balduin is unexpectedly offered a fortune by the mysterious money-lender Scapinelli - but on a strange condition...",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 589,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTkzNGRhMDMtYWZmMS00OGQxLTliNTEtMTlkOTRkYmEyZDFmXkEyXkFqcGdeQXVyMzg2MzE2OTE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Conrad Veidt",
        "Elizza La Porta",
        "Erich Kober",
        "Ferdinand von Alten",
        "Fritz Alberti",
        "Max Maximilian",
        "Werner Krauss",
        "Ágnes Eszterházy"
    ],
    "directors": [
        "Henrik Galeen"
    ],
    "writers": [
        "Hanns Heinz Ewers",
        "Henrik Galeen"
    ],
    "genres": [
        "Drama",
        "Horror"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Sokal-Film GmbH"
}