Demon Slayer API
Demon Slayer API — The Demon Slayer API provides developers with structure…
Demon Slayer API exposes the Demon Slayer API provides developers with structured data related to the popular anime series, including character details, combat styles, and affiliations. It allows users to access information about characters, such as their age, gender, abilities, and memorable quotes, enhancing the experience for fans and developers alike. We verified a keyless GET endpoint returning JSON (Anime). Check the provider docs for rate limits and terms before production use.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://www.demonslayer-api.com/api/v1/characters
{
"pagination": {
"totalElements": 45,
"elementsOnPage": 5,
"currentPage": 1,
"totalPages": 9,
"previousPage": "",
"nextPage": "https://www.demonslayer-api.com/api/v1/characters?page=2"
},
"content": [
{
"id": 1,
"name": "Tanjiro Kamado",
"age": 16,
"gender": "Male",
"race": "Human",
"description": "Is the main protagonist of Demon Slayer. He joined the Demon Slayer Corp to find a remedy to turn his sister, Nezuko Kamado, back into a human and to hunt down and kill demons.",
"img": "https://www.demonslayer-api.com/api/v1/characters/images/1.webp",
"affiliation_id": 1
},
{
"id": 2,
"name": "Nezuko Kamado",
"age": 14,
"gender": "Female",
"race": "Demon",
"description": "She is a demon and the younger sister of Tanjiro Kamado and one of the two remaining members of the Kamado family. Formerly a human, she was attacked and transformed into a demon by Muzan Kibutsuji.",
"img": "https://www.demonslayer-api.com/api/v1/characters/images/2.webp",
"affiliation_id": 1
}
]
}curl "https://www.demonslayer-api.com/api/v1/characters"const res = await fetch("https://www.demonslayer-api.com/api/v1/characters");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.demonslayer-api.com/api/v1/characters")
print(res.json())/api/v1/charactersPROBEDDemon Slayer API — The Demon Slayer API provides developers with structure…
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Demon Slayer API: common questions
Is Demon Slayer API free to use?
Yes — Demon Slayer API 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 Demon Slayer API need an API key?
No — Demon Slayer API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Demon Slayer API from the browser?
Yes — Demon Slayer API 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 Demon Slayer API up right now?
Demon Slayer API is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.