Elden Ring API
Elden Ring items, bosses, weapons and NPCs
A community Elden Ring database exposing bosses, weapons, armor, spells, classes and NPCs as paginated JSON. No key; responses carry a count/total envelope for easy paging. Popular for build planners and wiki mirrors.
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://eldenring.fanapis.com/api/classes?limit=1
{
"success": true,
"count": 1,
"total": 14,
"data": [
{
"id": "17f69d71826l0i32gkm3ndn3kywxqj",
"name": "Hero",
"image": "https://eldenring.fanapis.com/images/classes/17f69d71826l0i32gkm3ndn3kywxqj.png",
"description": "A stalwart Hero, at home with a battleaxe, descended from a badlands chieftain",
"stats": {
"level": "7",
"vigor": "14",
"mind": "9",
"endurance": "12",
"strength": "16",
"dexterity": "9",
"intelligence": "7",
"faith": "8"
}
}
]
}curl "https://eldenring.fanapis.com/api/classes?limit=1"const res = await fetch("https://eldenring.fanapis.com/api/classes?limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://eldenring.fanapis.com/api/classes?limit=1")
print(res.json())/classes?limit=1PROBEDElden Ring items, bosses, weapons and NPCs
/classes?limit=5Classes — documented GET route.
/classes?page=1Classes — documented GET route.
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.
Elden Ring API: common questions
Is Elden Ring API free to use?
Yes — Elden Ring API is a free games API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Elden Ring API need an API key?
No — Elden Ring API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Elden Ring API from the browser?
Yes — Elden Ring 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 Elden Ring API up right now?
Elden Ring 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.