action dnd5eapi_get_api_magic_items_index { label: "Get a magic item by index." description: "These are the various magic items you can find in the game." provider: dnd5eapi method: GET path: "/api/magic-items/{index}" encoding: json input: { type: "object" properties: { index: { type: "string" } } required: ["index"] additionalProperties: false } output: { description: "`MagicItem`\n" type: "object" } }