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

{
    "id": 18836,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18836?format=api",
    "title": "La donna divina",
    "original_title": "The Divine Woman",
    "year": 1928,
    "date_published": "1928-12-05",
    "duration": 80,
    "description": "[For 9 minute surviving fragment] Lucian, a soldier in Paris, is to ship out for Algiers at 9 that evening. He stops by for a last meal with his love, Marianne. He may be worried that when ...",
    "long_description": "[For 9 minute surviving fragment] Lucian, a soldier in Paris, is to ship out for Algiers at 9 that evening. He stops by for a last meal with his love, Marianne. He may be worried that when he leaves she will find another soldier to love. They argue then embrace and, when the clock strikes midnight, he is still in her arms. Is desertion in the cards? Can the relationship survive the military demands and a soldier's obligations?",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 337,
    "metascore": null,
    "budget": 267000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 5,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjAzNDQxOTA4NV5BMl5BanBnXkFtZTgwMDQ0MTM5MjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Cesare Gravina",
        "Dorothy Cumming",
        "Greta Garbo",
        "Jean De Briac",
        "Johnny Mack Brown",
        "Lars Hanson",
        "Lowell Sherman",
        "Paulette Duval",
        "Polly Moran",
        "Sonny Loy"
    ],
    "directors": [
        "Victor Sjöström"
    ],
    "writers": [
        "Dorothy Farnum",
        "John Colton"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}