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

{
    "id": 16201,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16201?format=api",
    "title": "Parisian Love",
    "original_title": "Parisian Love",
    "year": 1925,
    "date_published": "1925-08-01",
    "duration": 70,
    "description": "Street people Armand and Marie are madly in love, and she persuades Armand and other gang members to rob the home of Pierre Marcel, a wealthy scientist. The police break up the robbery but ...",
    "long_description": "Street people Armand and Marie are madly in love, and she persuades Armand and other gang members to rob the home of Pierre Marcel, a wealthy scientist. The police break up the robbery but Pierre hides Armand from them because he kept a gang member from stabbing him, but Armand is wounded in doing so. When Armand regains his health, Pierre takes him around town and introduces him to many women, and Armand has no objections. Marie - jealous of the women - swears revenge on Marcel. They meet and he falls in love with her, and they are married while Armand is away in London. On their wedding night, Marie tells Marcel she is an Apache and her revenge is complete, and she rushes into Armand's arms. But another Apache, in love with Marie, wounds her with a gun shot.",
    "avg_vote": "6.2",
    "imdb_score": "6.2",
    "votes": 207,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYjM4MTU4ZmItMjFhZi00ZGJjLWFhYzAtMzRiODEzNDIyMTgwXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Alyce Mills",
        "Clara Bow",
        "Donald Keith",
        "Hazel Keener",
        "J. Gordon Russell",
        "Jean De Briac",
        "Lillian Leighton",
        "Lou Tellegen",
        "Otto Matieson"
    ],
    "directors": [
        "Louis J. Gasnier"
    ],
    "writers": [
        "F. Oakley Crawford",
        "Lois Hutchinson"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "B.P. Schulberg Productions"
}