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

{
    "id": 6589,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/6589?format=api",
    "title": "The Devil's Needle",
    "original_title": "The Devil's Needle",
    "year": 1916,
    "date_published": "1916-08-13",
    "duration": 59,
    "description": "Wynne Mortimer, a pampered society girl and daughter of William Mortimer, a prominent business man, chances to meet David White, a young artist whose fame is already assured, at an art ...",
    "long_description": "Wynne Mortimer, a pampered society girl and daughter of William Mortimer, a prominent business man, chances to meet David White, a young artist whose fame is already assured, at an art exhibit. Despite the fact that she is engaged to marry Hugh Gordon, the junior partner of her father, she falls in love with the artist. He invites the girl and her father to visit his studio and the invitation is accepted. Renee, a model, has been in love with David White for years and he has seemingly reciprocated her love. When Wynne Mortimer appears on the scene, however, he forgets all thoughts of love for Renee. The model is quick to realize the change in her lover. Secretly, she has been a user of cocaine. To forget the heartache the growing attachment between her lover and Wynne causes her, she turns to the cocaine. Wynne, led on by her interest in the artist and his insistence that she is the only one who can justly typify the spirit of a new picture at which he is at work, goes to the studio ...",
    "avg_vote": "6.8",
    "imdb_score": "6.7",
    "votes": 125,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 11,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZjU1MTIyMmQtODhjMy00NDhjLWI0ZTktNDNkMTEwOGExMWU2XkEyXkFqcGdeQXVyMzE0MjY5ODA@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "F.A. Turner",
        "Howard Gaye",
        "John E. Brennan",
        "Marguerite Marsh",
        "Norma Talmadge",
        "Paul Le Blanc",
        "Tully Marshall"
    ],
    "directors": [
        "Chester Withey"
    ],
    "writers": [
        "Chester Withey",
        "Roy Somerville"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fine Arts Film Company"
}