← Entretenimiento

Detalle de monstruo de D&D

GET /dnd/monsters/:name

Get complete stat block for a specific D&D 5e monster por nombre or index key. Returns challenge rating, hit points, armor class, ability scores (STR/DEX/CON/INT/WIS/CHA), speed, damage resistances, special abilities, actions, and legendary actions. Data from the official 5e SRD via the D&D 5e API. Esencial para encounter balancing tools, virtual tabletop integrations, and DM reference aplicaciones used during game sessions.

Parametros

nombre requerido

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

Ejemplos de solicitudes

Uso basico
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

Respuesta en vivo

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