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

{
    "id": 20143,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20143?format=api",
    "title": "La compagnia d'assalto",
    "original_title": "Marianne",
    "year": 1929,
    "date_published": "1929-08-24",
    "duration": 111,
    "description": "During World War I, a young French woman struggles to choose between two suitors: a blind soldier to whom she is engaged and an American serviceman.",
    "long_description": "During World War I, a French girl is romanced by an American doughboy even though she is promised to a French soldier who is fighting at the front. She falls in love with the Yank however out of her commitment to her French soldier she stays with him especially since he returns from the war blind. Do circumstances change so she can follow him to \"Second Forty Street\" in New York? Musical numbers include \"Just You, Just Me.\"",
    "avg_vote": "6.2",
    "imdb_score": "6.2",
    "votes": 1145,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 18,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTM5MjY0ZWUtNzE0Yi00Y2IxLWI3MTctOTljNTYzOWFiNWY2XkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Benny Rubin",
        "Cliff Edwards",
        "Emile Chautard",
        "George Baxter",
        "Lawrence Gray",
        "Marion Davies",
        "Robert Edeson",
        "Scott Kolk"
    ],
    "directors": [
        "Robert Z. Leonard"
    ],
    "writers": [
        "Dale Van Every",
        "Laurence Stallings"
    ],
    "genres": [
        "Drama",
        "Musical",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Cosmopolitan Productions"
}