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

{
    "id": 24539,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24539?format=api",
    "title": "Segreti",
    "original_title": "Secrets",
    "year": 1933,
    "date_published": "1933-03-16",
    "duration": 90,
    "description": "In the late 1800s New England, banker William Marlowe and his wife Martha have arranged for their daughter Mary to marry the officious and older Lord Hurley of England. Mary does not want ...",
    "long_description": "In the late 1800s New England, banker William Marlowe and his wife Martha have arranged for their daughter Mary to marry the officious and older Lord Hurley of England. Mary does not want to marry Lord Hurley, but rather John Carlton, a lowly clerk at her father's bank. The two fell in love at first sight. When John and Mary's relationship is discovered by her parents, William discharges John. Knowing he can't get another job in New England, John decides to move west to California to start a new life off the land. Despite the probable hardships, Mary wants to go along and the two elope. They do face those initial hardships, most specifically an especially violent encounter with cattle rustlers, but they are able to carve out a successful life as ranchers. Twenty years, several children and a mansion of their own later, John is a popular choice to run for governor. Some past indiscretions may not only threaten his gubernatorial run but his marriage altogether.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 585,
    "metascore": null,
    "budget": 531641,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 26,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOTU1ODgxNGYtZGIxYi00YTEzLTgxZjYtYmE3Y2NjNTMwNmNkXkEyXkFqcGdeQXVyNDY1NzU5NjY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Allan Sears",
        "Bessie Barriscale",
        "Blanche Friderici",
        "C. Aubrey Smith",
        "Doris Lloyd",
        "Ethel Clayton",
        "Herbert Evans",
        "Huntley Gordon",
        "Leslie Howard",
        "Mary Pickford",
        "Mona Maris",
        "Ned Sparks",
        "Theodore von Eltz"
    ],
    "directors": [
        "Frank Borzage"
    ],
    "writers": [
        "Frances Marion",
        "Salisbury Field"
    ],
    "genres": [
        "Drama",
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Mary Pickford Company"
}