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

{
    "id": 4872,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/4872?format=api",
    "title": "Alias Jimmy Valentine",
    "original_title": "Alias Jimmy Valentine",
    "year": 1915,
    "date_published": "1915-02-22",
    "duration": 65,
    "description": "After robbing a bank, a criminal is wrongfully pardoned from prison.",
    "long_description": "Rose Fay one day is riding in a railroad parlor car and suffers an insult by a fellow passenger, from whose brutality she is defended and saved by a handsome young stranger, who, assured that she will not be further molested, disappears from the scene. But Rose has fallen in love with her savior, and her love does not diminish by the lapse of three years. One day she is visiting Sing Sing in company of her father, the Lieutenant Governor of the State, and among the convicts she recognizes her deliverer in the person of Lee Randall alias Jimmy Valentine, who is suffering imprisonment for a crime of which he so vehemently and convincingly pleads his ignorance that the Lieutenant Governor secures his release. He is given a chance of retrieving his reputation; his appointment to a position in a bank of which Mr. Lane is president is the means. He goes straight. His old associates are after him, but he wards them off. The detectives try to pounce on him for offenses of which he may be ...",
    "avg_vote": "6.6",
    "imdb_score": "6.5",
    "votes": 208,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzJiZWJlOGEtZjcwYi00ZDExLWFlNTgtMDE0Nzg1YjA0MDZmXkEyXkFqcGdeQXVyODc1NDEwNzQ@._V1_UY268_CR80,0,182,268_AL_.jpg",
    "actors": [
        "Alec B. Francis",
        "D.J. Flanagan",
        "Frederick Truesdell",
        "George Cummings",
        "John Boone",
        "Johnny Hines",
        "Robert Cummings",
        "Robert Warwick",
        "Ruth Shepley",
        "Thomas Mott Osborne",
        "Walter Craven"
    ],
    "directors": [
        "Maurice Tourneur"
    ],
    "writers": [
        "O. Henry",
        "Paul Armstrong"
    ],
    "genres": [
        "Crime",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Peerless Productions"
}