action dnd5eapi_get_api_endpoint { label: "Get list of all available resources for an endpoint." description: "Currently only the [`/spells`](#get-/api/spells) and [`/monsters`](#get-/api/monsters) endpoints support filtering with query parameters. Use of these query parameters is documented under the respective [Spells](#tag--Spells) and [Monsters](#tag--Monsters) sections.\n" provider: dnd5eapi method: GET path: "/api/{endpoint}" encoding: json output: { type: "object" description: "`APIReferenceList`\n" properties: { count: { type: "number" description: "Total number of resources available." } results: { type: "array" items: { type: "object" description: "`APIReference`\n" properties: { index: { type: "string" description: "Resource index for shorthand searching." } name: { type: "string" description: "Name of the referenced resource." } url: { type: "string" description: "URL of the referenced resource." } } } } } } }