Astroworld
Minecraft game data: mobs, items, biomes, versions and more
Astroworld is a keyless REST API of Minecraft reference data — mobs, items, biomes, enchantments, structures, commands, versions and achievements. Mob records include HP, per-difficulty damage, drops, spawn conditions and behaviour notes. Filter with search/type/category params and add ?pretty=true for formatted output.
GET https://api.astroworldmc.com/api/v1/mobs?search=creeper
{
"success": true,
"count": 1,
"data": [
{
"name": "Creeper",
"id": "creeper",
"type": "hostile",
"hp": 20,
"damage": {
"easy": 22,
"normal": 43,
"hard": 64
},
"category": "hostile"
}
]
}curl "https://api.astroworldmc.com/api/v1/mobs?search=creeper"const res = await fetch("https://api.astroworldmc.com/api/v1/mobs?search=creeper");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.astroworldmc.com/api/v1/mobs?search=creeper")
print(res.json())/mobs?search=creeperPROBEDMinecraft game data: mobs, items, biomes, versions and more
/mobs?limit=5Mobs — documented GET route.
/mobs?page=1Mobs — documented GET route.
/mobs?search=creeper"Search results filtered by query parameters.
/mobs/creeper"Creeper&Quot — documented GET route.
/biomes?dimension=netherBiomes — 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.
Astroworld: common questions
Is Astroworld free to use?
Yes — Astroworld is a free games API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Astroworld need an API key?
No — Astroworld needs no API key or signup. You can call it straight away; rate limits still apply (100 req/window · 99 remaining · resets 60).
Can I call Astroworld from the browser?
Yes — Astroworld 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 Astroworld up right now?
As of our last scheduled check, Astroworld is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.