Studio Ghibli

Ghibli films, characters and locations as JSON

🌸 AnimeUNMONITOREDchecked 59 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

Community JSON API over the Studio Ghibli catalog. List films, fetch by ID, browse people and locations — no key, small responses, good for demos.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://ghibliapi.vercel.app/films

[
  {
    "id": "2baf70d1-42bb-4437-b551-e5fed5a87abe",
    "title": "Castle in the Sky",
    "original_title": "天空の城ラピュタ",
    "original_title_romanised": "Tenkū no shiro Rapyuta",
    "image": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/npOnzAbLh6VOIu3naU5QaEcTepo.jpg",
    "movie_banner": "https://image.tmdb.org/t/p/w533_and_h300_bestv2/3cyjYtLWCBE1uvWINHFsFnE8LUK.jpg",
    "description": "The orphan Sheeta inherited a mysterious crystal that links her to the mythical sky-kingdom of Laputa. With the help of resourceful Pazu and a rollicking band of sky pirates, she makes her way to the ruins of the once-great civilization. Sheeta and Pazu must outwit the evil Muska, who plans to use Laputa's science to make himself ruler of the world.",
    "director": "Hayao Miyazaki"
  },
  {
    "id": "12cfb892-aac0-4c5b-94af-521852e46d6a",
    "title": "Grave of the Fireflies",
    "original_title": "火垂るの墓",
    "original_title_romanised": "Hotaru no haka",
    "image": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qG3RYlIVpTYclR9TYIsy8p7m7AT.jpg",
    "movie_banner": "https://image.tmdb.org/t/p/original/vkZSd0Lp8iCVBGpFH9L7LzLusjS.jpg",
    "description": "In the latter part of World War II, a boy and his sister, orphaned when their mother is killed in the firebombing of Tokyo, are left to survive on their own in what remains of civilian life in Japan. The plot follows this boy and his sister as they do their best to survive in the Japanese countryside, battling hunger, prejudice, and pride in their own quiet, personal battle.",
    "director": "Isao Takahata"
  }
]
Call itcurl · fetch · python
curl "https://ghibliapi.vercel.app/films"
const res = await fetch("https://ghibliapi.vercel.app/films");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://ghibliapi.vercel.app/films")
print(res.json())
Endpoints · 4On scheduleFULL DOCS ↗
First rollup pending — GET /films has been probed
GET/filmsPROBED

All Studio Ghibli films.

GET/films/574b58d0-3d93-4daf-8942-a54a890f8035

Single film by ID (My Neighbor Totoro).

GET/people

People who worked on Ghibli films.

GET/locations

Locations from the film catalog.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

Studio Ghibli: common questions

Is Studio Ghibli free to use?

Yes — Studio Ghibli is a free anime API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Studio Ghibli need an API key?

No — Studio Ghibli needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call Studio Ghibli from the browser?

Yes — Studio Ghibli returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is Studio Ghibli up right now?

As of our last scheduled check, Studio Ghibli is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.