GET /dnd/monsters/:name
Obtenez complete stat block pour a spécifique D&D 5e monster by name ou index key. Renvoie challenge rating, hit points, armor class, ability scores (STR/DEX/CON/INT/WIS/CHA), speed, damage resistances, special abilities, actions, et legendary actions. Données de l'officiel 5e SRD via le D&D 5e API. Essentiel pour les encounter balancing tools, virtual tabletop integrations, et DM reference apps used during game sessions.
nom
requis
Monster name or index (e.g., adult-red-dragon, owlbear)
| Nom | Requis | Par défaut | Description |
|---|---|---|---|
nom |
Oui | - | 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
}