Skip to main content
POST
/
find-ability-block
Find ability blocks (feats, actions, class features, etc.)
curl --request POST \
  --url https://api.wanderersguide.app/functions/v1/find-ability-block \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 123,
  "type": "action",
  "name": "<string>",
  "content_sources": [
    123
  ],
  "traits": [
    123
  ],
  "prerequisites": [
    "<string>"
  ]
}
'
{
  "status": "success",
  "data": [
    {
      "name": "<string>",
      "rarity": "COMMON",
      "description": "<string>",
      "type": "action",
      "content_source_id": 123,
      "id": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "operations": [
        {}
      ],
      "actions": "ONE-ACTION",
      "level": 123,
      "availability": "STANDARD",
      "prerequisites": [
        "<string>"
      ],
      "frequency": "<string>",
      "cost": "<string>",
      "trigger": "<string>",
      "requirements": "<string>",
      "access": "<string>",
      "special": "<string>",
      "meta_data": {},
      "traits": [
        123
      ],
      "version": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.wanderersguide.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key created in your Wanderer's Guide account settings. Send as Authorization: Bearer <key>. Used for direct API access from external tools and scripts.

Body

application/json
id
type
enum<string>
Available options:
action,
feat,
physical-feature,
sense,
class-feature,
heritage,
mode
name
string
content_sources
integer[]
traits
integer[]
prerequisites
string[]

Response

200 - application/json

JSend success.

status
enum<string>
Available options:
success
data
object