GET /dnd/classes/:name
Obtenga complete details para un/una específico/a D&D 5e character class por nombre or index key. Devuelve hit die, primary ability scores, saving throw proficiencies, skill choices, starting equipment, class features by level, spellcasting ability (if applicable), and subclass options. Datos de the official 5e SRD via the D&D 5e API. Esencial para character builders, level-up planners, and class guide generators.
nombre
requerido
Class name or index (e.g., wizard, ranger, paladin)
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
nombre |
Si | - | 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
}