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

{
    "id": 10281,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10281?format=api",
    "title": "Non vorrei essere un uomo",
    "original_title": "Ich möchte kein Mann sein",
    "year": 1918,
    "date_published": "1918-11-18",
    "duration": 45,
    "description": "A teenaged tomboy, tired of being bossed around by her strict guardian, impersonates a man so she can have more fun, but discovers that being the opposite sex isn't as easy as she had hoped.",
    "long_description": "High-spirited young Ossi Oswalda is the bane of her uncle and governess' existence. She insists on playing poker and smoking and talks with strange men on the street. When her uncle leaves to take up a new job, she looks forward to enjoying new freedom. Her hopes are dashed when her new guardian Dr. Kersten proves to be strict and unyielding. Frustrated with her cloistered life, Ossi sneaks out on the town dressed as a young man. She finds that being a man has its own disadvantages when she discovers she is not given the same gentle treatment when she is masquerading as a male.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 1257,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 16,
    "reviews_from_critics": 15,
    "image_url": "https://m.media-amazon.com/images/M/MV5BY2Q4ZjJjN2ItMTZjMC00MDE4LWJhZjctMzI0NTU3YjUxZGU4XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR8,0,182,268_AL_.jpg",
    "actors": [
        "Curt Goetz",
        "Ferry Sikla",
        "Margarete Kupfer",
        "Ossi Oswalda",
        "Victor Janson"
    ],
    "directors": [
        "Ernst Lubitsch"
    ],
    "writers": [
        "Ernst Lubitsch",
        "Hanns Kräly"
    ],
    "genres": [
        "Comedy",
        "Romance"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Projektions-AG Union (PAGU)"
}