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

{
    "id": 18909,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18909?format=api",
    "title": "L'ultima gioia",
    "original_title": "Four Sons",
    "year": 1928,
    "date_published": "1928-02-13",
    "duration": 100,
    "description": "A family saga in which three of a Bavarian widow's sons go to war for Germany and the fourth goes to America, Germany's eventual opponent.",
    "long_description": "In Burgendorf, Bavaria, Mother Bernle has four sons. Franz is in the army, Johann works at the forge, Andreas tends the sheep. Joseph is riding a hay wagon with a pretty girl when some of the hay falls off, landing on the fearsome Maj. Von Stomm. Joseph gets a slap from the major... The jovial postman has brought a letter from America. Joseph has the offer of a job in the States. But getting there is so expensive... It's Mother Bernle's birthday and most of the town gathers for the dancing. Mother gives Joseph the money she has secreted away. He leaves for the USA... It is \"Der Tag\", The Day when war is declared. Franz and Johann are excited about their new uniforms. But America is still neutral. Joseph runs the German-American Delicatessen with his new wife Annabelle. The reports of the first German battles with the Russians are good. So why does the postman carry a black-edged letter for Mother Bernle? When America does enter the war, Joseph enlists and meets his friend, the iceman ...",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 630,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 17,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZDUwY2FiYTEtNGU3ZC00ZGI0LTkwOWQtNDEzYmI1NTBmMDI0XkEyXkFqcGdeQXVyNTY4NjI2OTA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Albert Gran",
        "Archduke Leopold of Austria",
        "Charles Morton",
        "Earle Foxe",
        "Ferdinand Schumann-Heink",
        "Francis X. Bushman Jr.",
        "Frank Reicher",
        "George Meeker",
        "Jack Pennick",
        "James Hall",
        "June Collyer",
        "Margaret Mann"
    ],
    "directors": [
        "John Ford"
    ],
    "writers": [
        "I.A.R. Wylie",
        "Philip Klein"
    ],
    "genres": [
        "Drama",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fox Film Corporation"
}