Query Guild Stats

Version: 1.0.0 Workflow: query-guild-stats Category: Query


Description

Query guild statistics including member count and power stats.

Prerequisites

Steps

1. Get Guild Information

Parameters:

Parameter Example Value
guild_id 0-1 (guild IDs are type 0, ^0-[0-9]+$)

Data Extraction (unwrap the envelope data):

Error Handling:

Status Action
401 Session required — log in first (signature flow)
404 Guild not found - verify guild_id

2. Get Guild Member Count

Parameters:

Parameter Value
guild_id ``

Data Extraction:

Error Handling:

Status Action
404 Guild not found - verify guild_id

3. Get Guild Power Statistics

Parameters:

Parameter Value
guild_id ``

Data Extraction:

Error Handling:

Status Action
404 Guild not found - verify guild_id

Result

{
  "guild": {
    "id": "",
    "name": "",
    "member_count": "",
    "power_stats": ""
  }
}

Notes

This workflow demonstrates parallel queries that can be executed concurrently since they don’t depend on each other (steps 2 and 3).