GET /dnd/monsters/:name
Erhalten Sie complete stat block for a specific D&D 5e monster by name oder index key. Liefert challenge rating, hit points, armor class, ability scores (STR/DEX/CON/INT/WIS/CHA), speed, damage resistances, special abilities, actions, und legendary actions. Daten von the official 5e SRD via the D&D 5e API. Unverzichtbar für encounter balancing tools, virtual tabletop integrations, und DM reference apps used during game sessions.
Name
erforderlich
Monster name or index (e.g., adult-red-dragon, owlbear)
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
Name |
Ja | - | Monster name or index (e.g., adult-red-dragon, owlbear) |
curl https://nordapi.ee/api/v1/dnd/monsters/owlbear
curl https://nordapi.ee/api/v1/dnd/monsters/owlbear
curl https://nordapi.ee/api/v1/dnd/monsters/adult-red-dragon
curl https://nordapi.ee/api/v1/dnd/monsters/troll
{
"data": {
"alignment": "unaligned",
"armor_class": 13,
"challenge_rating": 3,
"charisma": 7,
"constitution": 17,
"dexterity": 12,
"hit_points": 59,
"intelligence": 3,
"languages": "",
"name": "Owlbear",
"size": "Large",
"special_abilities": [
{
"desc": "The owlbear has advantage on Wisdom (Perception) checks that rely on sight or smell.",
"name": "Keen Sight and Smell"
}
],
"speed": {
"walk": "40 ft."
},
"strength": 20,
"type": "monstrosity",
"wisdom": 12,
"xp": 700
},
"success": true
}