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

{
    "id": 20062,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20062?format=api",
    "title": "Il bacio",
    "original_title": "The Kiss",
    "year": 1929,
    "date_published": "1929-11-16",
    "duration": 62,
    "description": "An unhappily married woman is caught up in scandal and murder when her affection toward a young man is misinterpreted.",
    "long_description": "Irene is unhappily married to an older businessman, but very much in love with a handsome young lawyer. He doesn't want to add to her unhappiness by ruining her marriage; she is terrified of her husband's jealousy and anger. They decide to stop seeing each other, and she bides her time with Pierre, a young friend of the family who walks their dogs and is in puppy love with Irene. When Pierre is about to leave for college, he begs her for a goodbye kiss. She agrees, and who should walk in while it is happening, but her ailing and financially distraught husband...",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 951,
    "metascore": null,
    "budget": 257000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 19,
    "reviews_from_critics": 9,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWRkMGU2MjgtZTEzMy00NzIwLWFkYzEtZTFmMWRiNWQwNjUyXkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Anders Randolf",
        "Conrad Nagel",
        "George Davis",
        "Greta Garbo",
        "Holmes Herbert",
        "Lew Ayres"
    ],
    "directors": [
        "Jacques Feyder"
    ],
    "writers": [
        "George M. Saville",
        "Hanns Kräly"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}