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

{
    "id": 19429,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19429?format=api",
    "title": "L'angelo della strada",
    "original_title": "Street Angel",
    "year": 1928,
    "date_published": "1929-01-01",
    "duration": 102,
    "description": "A woman on the run from the law finds her past catching up to her just as she is on the verge of true happiness.",
    "long_description": "In Naples, where prostitutes can pay their rent, Angela is sentenced to a year in the workhouse when she tries to steal(while streetwalking) to pay for medicine for her dying mother. She escapes and is hidden by a circus, where she's a natural talent and meets Gino, a painter. When she breaks her ankle in a fall, her career ends. What can she and Gino do? He wants to go to Naples, but the law may still be looking for her, and Gino doesn't know about her past. Starving artist and a beauty with a secret: is there room in this world for them?",
    "avg_vote": "7.4",
    "imdb_score": "7.4",
    "votes": 2121,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 29,
    "reviews_from_critics": 23,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTk0NTU1NzM0Ml5BMl5BanBnXkFtZTgwNDEyOTYyMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alberto Rabagliati",
        "Charles Farrell",
        "Guido Trento",
        "Henry Armetta",
        "Janet Gaynor",
        "Natalie Kingston"
    ],
    "directors": [
        "Frank Borzage"
    ],
    "writers": [
        "Monckton Hoffe",
        "Philip Klein"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fox Film Corporation"
}