action dnd5eapi_get_api_feats_index { label: "Get a feat by index." description: "# Feat \n\nA feat is a boon a character can receive at level up instead of an ability score increase.\n" provider: dnd5eapi method: GET path: "/api/feats/{index}" encoding: json input: { type: "object" properties: { index: { type: "string" enum: ["grappler"] } } required: ["index"] additionalProperties: false } output: { description: "`Feat`\n" type: "object" } }