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.
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.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
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?
As of our last scheduled check, Elden Ring API is healthy with 100% uptime over 90 days and a 312 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.