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

{
    "id": 20724,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20724?format=api",
    "title": "La sivigliana",
    "original_title": "Call of the Flesh",
    "year": 1930,
    "date_published": "1930-08-16",
    "duration": 100,
    "description": "From a poor working class background, Juan de Dios is a cantina performer in Seville, singing and dancing with his partner Lola. They have a contentious professional and personal ...",
    "long_description": "From a poor working class background, Juan de Dios is a cantina performer in Seville, singing and dancing with his partner Lola. They have a contentious professional and personal relationship, her jealous self who cannot tolerate his constant flirting. He really aspires to be a serious opera singer, he under the tutelage of Estaban. Once the greatest impresario in Spain himself, Estaban lost everything because of the same reckless behavior that Juan now exhibits, that behavior which Estaban is trying to quell in Juan. Estaban's plan is to get one of his old contacts in Madrid, an impresario, to manage Juan's career to get him serious singing gigs, leading to that fame and fortune Esteban once used to have. It's love at first sight when Juan meets Maria Consuelo Vargas. What he initially doesn't know is that their meeting was by no accident, as she, a postulant at St. Agustín convent who just escaped from that life, had been mesmerized by him and his singing every time she saw him as ...",
    "avg_vote": "5.6",
    "imdb_score": "5.5",
    "votes": 135,
    "metascore": null,
    "budget": 464000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYTM2MTE4MDktZmFjYi00NTc5LWIyNzMtYmVlMzczNDEyYzljXkEyXkFqcGdeQXVyMDMxMjQwMw@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Dorothy Jordan",
        "Ernest Torrence",
        "Mathilde Comont",
        "Nance O'Neil",
        "Ramon Novarro",
        "Renée Adorée",
        "Russell Hopton"
    ],
    "directors": [
        "Charles Brabin"
    ],
    "writers": [
        "Dorothy Farnum",
        "John Colton"
    ],
    "genres": [
        "Musical",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}