← Viihde

D&D-hirviön tiedot

GET /dnd/monsters/:name

Hae complete stat block for a specific D&D 5e monster by name or index key. Palauttaa challenge rating, hit points, armor class, ability scores (STR/DEX/CON/INT/WIS/CHA), speed, damage resistances, special abilities, actions, and legendary actions. Data the official 5e SRD via the D&D 5e API. Välttämätön encounter balancing tools, virtual tabletop integrations, and DM reference apps used during game sessions.

Parametrit

nimi pakollinen

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

Esimerkkipyynnöt

Peruskäyttö
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

Reaaliaikainen vastaus

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