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

{
    "id": 12349,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/12349?format=api",
    "title": "Il monello",
    "original_title": "The Kid",
    "year": 1921,
    "date_published": "1923-11-26",
    "duration": 68,
    "description": "The Tramp cares for an abandoned child, but events put that relationship in jeopardy.",
    "long_description": "The opening title reads: \"A comedy with a smile--and perhaps a tear\". As she leaves the charity hospital and passes a church wedding, Edna deposits her new baby with a pleading note in a limousine and goes off to commit suicide. The limo is stolen by thieves who dump the baby by a garbage can. Charlie the Tramp finds the baby and makes a home for him. Five years later Edna has become an opera star but does charity work for slum youngsters in hope of finding her boy. A doctor called by Edna discovers the note with the truth about the Kid and reports it to the authorities who come to take him away from Charlie. Before he arrives at the Orphan Asylum Charlie steals him back and takes him to a flophouse. The proprietor reads of a reward for the Kid and takes him to Edna. Charlie is later awakened by a kind policeman who reunites him with the Kid at Edna's mansion.",
    "avg_vote": "8.3",
    "imdb_score": "8.3",
    "votes": 111684,
    "metascore": null,
    "budget": 250000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": 26916,
    "reviews_from_users": 173,
    "reviews_from_critics": 105,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZjhhMThhNDItNTY2MC00MmU1LTliNDEtNDdhZjdlNTY5ZDQ1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Carl Miller",
        "Charles Chaplin",
        "Edna Purviance",
        "Jackie Coogan"
    ],
    "directors": [
        "Charles Chaplin"
    ],
    "writers": [
        "Charles Chaplin"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Family"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "None"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Charles Chaplin Productions"
}