GET /dnd/classes/:name
Erhalten Sie complete details for a specific D&D 5e character class by name oder index key. Liefert hit die, primary ability scores, saving throw proficiencies, skill choices, starting equipment, class features by level, spellcasting ability (if applicable), und subclass options. Daten von the official 5e SRD via the D&D 5e API. Unverzichtbar für character builders, level-up planners, und class guide generators.
Name
erforderlich
Class name or index (e.g., wizard, ranger, paladin)
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
Name |
Ja | - | Class name or index (e.g., wizard, ranger, paladin) |
curl https://nordapi.ee/api/v1/dnd/classes/wizard
curl https://nordapi.ee/api/v1/dnd/classes/wizard
curl https://nordapi.ee/api/v1/dnd/classes/ranger
curl https://nordapi.ee/api/v1/dnd/classes/paladin
{
"data": {
"hit_die": 6,
"name": "Wizard",
"proficiencies": [
"Daggers",
"Darts",
"Slings",
"Quarterstaffs",
"Crossbows, light",
"Saving Throw: INT",
"Saving Throw: WIS"
],
"saving_throws": [
"INT",
"WIS"
],
"subclasses": [
"Evocation"
]
},
"success": true
}