← Divertissement

Détail de monstre D&D

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.

Paramètres

nom requis

Monster name or index (e.g., adult-red-dragon, owlbear)

Exemples de requêtes

Utilisation de base
curl https://nordapi.ee/api/v1/dnd/monsters/owlbear
Owlbear stats
curl https://nordapi.ee/api/v1/dnd/monsters/owlbear
Adult Red Dragon stats
curl https://nordapi.ee/api/v1/dnd/monsters/adult-red-dragon
Troll stats
curl https://nordapi.ee/api/v1/dnd/monsters/troll

Réponse en direct

{
  "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
}