Digimon Information
Look up Digimon creatures by name or level
A tiny fan API listing Digimon with their name, evolution level and artwork. Query by name for a single creature or browse the full roster. Keyless JSON with CORS on.
GET https://digimon-api.vercel.app/api/digimon/name/agumon
[
{
"name": "Agumon",
"img": "https://digimon.shadowsmith.com/img/agumon.jpg",
"level": "Rookie"
}
]curl "https://digimon-api.vercel.app/api/digimon/name/agumon"const res = await fetch("https://digimon-api.vercel.app/api/digimon/name/agumon");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://digimon-api.vercel.app/api/digimon/name/agumon")
print(res.json())/digimon/name/agumonPROBEDLook up Digimon creatures by name or level
/digimonDigimon — documented GET route.
/digimon/1Digimon details by ID (example: 1).
/digimon?limit=10Digimon — documented GET route.
/digimon/search?q=testSearch by query parameters.
/api/digimonDigimon — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Digimon Information: common questions
Is Digimon Information free to use?
Yes — Digimon Information is a free games API. Free tier: Free — no API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Digimon Information need an API key?
No — Digimon Information needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Digimon Information from the browser?
Yes — Digimon Information 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 Digimon Information up right now?
As of our last scheduled check, Digimon Information is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.