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

{
    "id": 14925,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/14925?format=api",
    "title": "La zarina",
    "original_title": "Forbidden Paradise",
    "year": 1924,
    "date_published": "1924-11-30",
    "duration": 69,
    "description": "Alexei saves the Czarina from conspirators and is rewarded with her love. He deserts his sweetheart Anna, but discovers that his Queen is unfaithful too. Enraged, Alexei becomes a leader in the ongoing revolution against the royals.",
    "long_description": "Forbidden Paradise is a 1924 American silent drama film produced by Famous Players-Lasky and distributed by Paramount Pictures. It was directed by German film director Ernst Lubitsch. The film is based on a 1922 Broadway play, The Czarina, by Edward Sheldon who adapted the Hungarian language book of Melchior Lengyel and Lajos Bíró. The play starred Doris Keane, in one of her last stage roles, about Catherine the Great. Basil Rathbone costarred with Keane. The film starred Pola Negri as Catherine the Great and Rod La Rocque in the Rathbone role. The film marked Clark Gable's second film appearance.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 126,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 252076,
    "worldwide_gross_income": null,
    "reviews_from_users": 2,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BODI4ODYyNTM0Nl5BMl5BanBnXkFtZTgwNjAwMTgxMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Adolphe Menjou",
        "Carrie Daumery",
        "Fred Malatesta",
        "Nick De Ruiz",
        "Pauline Starke",
        "Pola Negri",
        "Rod La Rocque"
    ],
    "directors": [
        "Ernst Lubitsch"
    ],
    "writers": [
        "Agnes Christine Johnston",
        "Lajos Biró"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Famous Players-Lasky Corporation"
}