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

{
    "id": 9892,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/9892?format=api",
    "title": "Ravished Armenia",
    "original_title": "Ravished Armenia",
    "year": 1919,
    "date_published": "1919-01-19",
    "duration": 80,
    "description": "The story about the Armenian Genocide based on the account of survivor Aurora Mardiganian.",
    "long_description": "Aurora Mardiganian, a young and beautiful Armenian girl, lives with her parents in the Turkish city of Harpoot. Her father, a prosperous merchant, was preparing to send her to the West to be educated. For centuries the Armenians had been terrorized by the Turks, but this was a period of serenity between the Turks and the Christian-Armenians. However, the War had hit Europe, and the Turks had informed the American ambassador, Henry Morganthau, in Constantinople, that the Armenians were giving support to the Turks' enemy, Russia. Despite Morgantheau's objections, the Turks issue a decree that the Armenians must be moved southward into the desert. The Turkish governor, a Pasha, comes to Aurora's father and demands she be given him as a bride. The father tells him his daughter will not give up her Christian belief, as she would have to do to marry a Muslim. The governor leaves in anger. The order is given for the removal of the Armenians. The men are separated from the women, and the ...",
    "avg_vote": "5.9",
    "imdb_score": "5.8",
    "votes": 1066,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 2,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOWM2MzY1ZDItODEwMS00YjYzLThiZTMtNWEwYmJjZWNkZDllXkEyXkFqcGdeQXVyNDY1NzU5NjY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Anna Q. Nilsson",
        "Aurora Mardiganian",
        "Eugenie Besserer",
        "Frank Clark",
        "Hector Dion",
        "Henry Morgenthau",
        "Howard Davies",
        "Irving Cummings",
        "Lillian West",
        "Miles McCarthy"
    ],
    "directors": [
        "Oscar Apfel"
    ],
    "writers": [
        "Aurora Mardiganian",
        "Henry Leyford Gates"
    ],
    "genres": [
        "Drama",
        "History",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}