Genshin Impact
Community data on Genshin Impact characters and lore
A community project serving Genshin Impact game data: characters, weapons, artifacts, elements and more. The /characters endpoint returns a JSON array of slugs you can drill into for stats and art. Fan-maintained, free and keyless.
GET https://genshin.jmp.blue/characters
[
"albedo",
"alhaitham",
"aloy",
"amber"
]curl "https://genshin.jmp.blue/characters"const res = await fetch("https://genshin.jmp.blue/characters");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://genshin.jmp.blue/characters")
print(res.json())/charactersPROBEDCommunity data on Genshin Impact characters and lore
/characters?limit=5Paginated variant with limit parameter.
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.
Genshin Impact: common questions
Is Genshin Impact free to use?
Yes — Genshin Impact is a free games API. Free tier: Free, no API key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Genshin Impact need an API key?
No — Genshin Impact needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Genshin Impact from the browser?
Yes — Genshin Impact 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 Genshin Impact up right now?
As of our last scheduled check, Genshin Impact is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.