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

{
    "id": 22879,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22879?format=api",
    "title": "Addio alle armi",
    "original_title": "A Farewell to Arms",
    "year": 1932,
    "date_published": "1932-12-08",
    "duration": 80,
    "description": "An American ambulance driver and an English nurse fall in love in Italy during World War I.",
    "long_description": "A tale of the love between ambulance driver Lt. Henry and Nurse Catherine Barkley during World War I. The action takes place in Italy and the two fall in love during the war and will stop at nothing to be together. The film also analyses Lt. Henry's feelings on war and the purpose of fighting.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 5066,
    "metascore": null,
    "budget": 799520,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 62,
    "reviews_from_critics": 47,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzM2ODc0NTY3OF5BMl5BanBnXkFtZTgwMjQwNzkzMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Adolphe Menjou",
        "Blanche Friderici",
        "Gary Cooper",
        "Gilbert Emery",
        "Helen Hayes",
        "Jack La Rue",
        "Mary Forbes",
        "Mary Philips"
    ],
    "directors": [
        "Frank Borzage"
    ],
    "writers": [
        "Benjamin Glazer",
        "Oliver H.P. Garrett"
    ],
    "genres": [
        "Drama",
        "Romance",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}