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

{
    "id": 18578,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18578?format=api",
    "title": "Ali",
    "original_title": "Wings",
    "year": 1927,
    "date_published": "1929-01-05",
    "duration": 144,
    "description": "Two young men, one rich, one middle class, who are in love with the same woman, become fighter pilots in World War I.",
    "long_description": "Two young men from the same town but different social classes end up as fighter pilots in WW1. Jack Preston is a keen auto mechanic, building and modifying cars. David Armstrong comes from a wealthy family. They are both in love with the same woman, Sylvia. Her heart belongs to David but she doesn't let Jack know and plays along with his infatuation. Meanwhile, Jack's neighbour, Mary, is deeply in love with him but he just views her as a friend. WW1 interrupts the romantic entanglements as Jack and David enlist in the US Army Air Service (Air Service of the AEF at the time). They are initially bitter enemies, due to them both vying for Sylvia's affections. Over time, however, they become very good friends. They are both posted to the same fighter squadron in France, where being a fighter pilot means every day could easily be your last.",
    "avg_vote": "7.5",
    "imdb_score": "7.5",
    "votes": 11339,
    "metascore": null,
    "budget": 2000000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": 746,
    "reviews_from_users": 95,
    "reviews_from_critics": 92,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYTI1YjgzZmMtZmIyYy00YTkwLTgyOWEtOTVlNTFkZmMzNTk3XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Arlette Marchal",
        "Charles 'Buddy' Rogers",
        "Clara Bow",
        "El Brendel",
        "Gary Cooper",
        "Gunboat Smith",
        "Henry B. Walthall",
        "Jobyna Ralston",
        "Julia Swayne Gordon",
        "Richard Arlen",
        "Richard Tucker",
        "Rod Rogers",
        "Roscoe Karns"
    ],
    "directors": [
        "Harry d'Abbadie d'Arrast",
        "William A. Wellman"
    ],
    "writers": [
        "Hope Loring",
        "John Monk Saunders"
    ],
    "genres": [
        "Drama",
        "Romance",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "PG-13",
    "company": "Paramount Famous Lasky Corporation"
}