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

{
    "id": 23525,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23525?format=api",
    "title": "The Strange Love of Molly Louvain",
    "original_title": "The Strange Love of Molly Louvain",
    "year": 1932,
    "date_published": "1932-05-28",
    "duration": 73,
    "description": "Molly Louvain's plans for a respectable marriage with her sweetheart Ralph fall through so she takes to the road with a two-bit crook and becomes wanted by the police in connection with a high-profile crime.",
    "long_description": "Abandoned by her mother at a young age, Molly Louvain is seen as no good, but she dreams of living respectably with her sweetheart Jimmy, who has promised to marry her. When Molly arrives at Ralph's house to finally meet his mother she is informed that both Ralph and his mother have been called out-of-town suddenly and that the dinner has been canceled. Heartbroken and carrying Ralph's unborn child, Molly takes to the road with Nicky Grant, a small-time crook from her past. A couple years pass and she leaves her daughter in the care of another woman. One night her old friend Jimmy and his college pals visit the dance hall where Molly works as a hostess. Jimmy and Molly are happy to see one another and catch up on old times. Drunk and jealous, Nicky orders Molly and Jimmy into a car he has stolen. When the police spot the car, Nicky fires some shots and runs into an alley, hitting an officer before being wounded himself. Molly drives off in the car with Jimmy. With a cop dead, the ...",
    "avg_vote": "6.3",
    "imdb_score": "6.3",
    "votes": 428,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 14,
    "reviews_from_critics": 9,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTc1NjA4MDI0N15BMl5BanBnXkFtZTcwNDQ3MTEyMQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Ann Dvorak",
        "C. Henry Gordon",
        "Charles Middleton",
        "Evalyn Knapp",
        "Frank McHugh",
        "Guy Kibbee",
        "Lee Tracy",
        "Leslie Fenton",
        "Mary Doran",
        "Richard Cromwell",
        "Thomas E. Jackson"
    ],
    "directors": [
        "Michael Curtiz"
    ],
    "writers": [
        "Erwin Gelsey",
        "Maurine Dallas Watkins"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}