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

{
    "id": 24470,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24470?format=api",
    "title": "El prisionero 13",
    "original_title": "El prisionero 13",
    "year": 1933,
    "date_published": "1933-05-31",
    "duration": 76,
    "description": "El Prisionero 13 (Prisoner 13) is part of the trilogy of films made by Fernando Fuentes concerning the Mexican Revolution. The film centers on the drunkard Colonel Carrasco, whose wife ...",
    "long_description": "El Prisionero 13 (Prisoner 13) is part of the trilogy of films made by Fernando Fuentes concerning the Mexican Revolution. The film centers on the drunkard Colonel Carrasco, whose wife Marta leaves him taking his young son. The child, Juan, grows into an admirable and well-mannered young man. Having been promoted to a higher rank of power amidst the Mexican Revolution, the indulgent and corrupt Colonel accepts a bribe to free a revolutionary, Felipe Martinez, from his prison. Martinez has been sentenced to execution at the hands of a firing squad. Carrasco asks to have the revolutionary replaced by absolutely anyone. In a twist of fate, that anyone turns out to be his own long lost son Juan. Upon receiving this news, Marta races to the prison and explains the predicament to Carrasco. He subsequently desperately attempts to prevent the gunning down of his son by his very own government officials.",
    "avg_vote": "7.2",
    "imdb_score": "7.2",
    "votes": 127,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTg0NTExMDc2N15BMl5BanBnXkFtZTcwNzgwMzYzMQ@@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Adela Jaloma",
        "Adela Sequeyro",
        "Alfredo del Diestro",
        "Alicia de Phillips",
        "Ana Guerrero",
        "Antonio R. Frausto",
        "Arturo Campoamor",
        "Emma Roldán",
        "Fernando A. Rivero",
        "Joaquín Coss",
        "Luis G. Barreiro",
        "Luis Sánchez Tello",
        "Octavio Martínez",
        "Ricardo Carti",
        "Roberto Gavaldón"
    ],
    "directors": [
        "Fernando de Fuentes"
    ],
    "writers": [
        "Fernando de Fuentes",
        "Miguel Ruiz"
    ],
    "genres": [
        "Drama",
        "War"
    ],
    "countries": [
        "Mexico"
    ],
    "languages": [
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Compañía Nacional Productora de Películas"
}