Version: 1.1.0
Category: webapp
Entity: Guild
Base URL: ${webappBaseUrl} (default: http://localhost:8080)
Last Updated: January 1, 2026
| Method | Path | Description | Auth Required |
|---|---|---|---|
| GET | /api/guild/this |
Get current user’s guild | Yes |
| GET | /api/guild/name |
Get guild name | No |
| GET | /api/guild/{guild_id}/name |
Get guild name by ID | No |
| GET | /api/guild/{guild_id}/members/count |
Get guild member count | No |
| GET | /api/guild/count |
Get total guild count | No |
| GET | /api/guild/directory |
Get guild directory | No |
| GET | /api/guild/{guild_id} |
Get guild by ID | No |
| GET | /api/guild/{guild_id}/power/stats |
Get guild power statistics | No |
| GET | /api/guild/{guild_id}/roster |
Get guild roster | No |
| GET | /api/guild/{guild_id}/planet/complete/count |
Get completed planet count for guild | No |
/api/guild/thisGet current user’s guild.
webapp-guild-this/api/guild/nameGet guild name.
webapp-guild-name/api/guild/{guild_id}/nameGet guild name by ID.
webapp-guild-by-id-name| Name | Type | Required | Format | Description |
|---|---|---|---|---|
guild_id |
string | Yes | guild-id | Guild identifier |
/api/guild/{guild_id}/members/countGet guild member count.
webapp-guild-members-count| Name | Type | Required | Format | Description |
|---|---|---|---|---|
guild_id |
string | Yes | guild-id | Guild identifier |
/api/guild/countGet total guild count.
webapp-guild-countschemas/responses.md#CountResponseapplication/jsonRequest: GET http://localhost:8080/api/guild/count
Response:
{
"count": 42
}
/api/guild/directoryGet guild directory.
webapp-guild-directory/api/guild/{guild_id}Get guild by ID.
webapp-guild-by-idschemas/entities.md#Guildapplication/json| Name | Type | Required | Format | Description |
|---|---|---|---|---|
guild_id |
string | Yes | guild-id | Guild identifier |
Request: GET http://localhost:8080/api/guild/2-1
Response:
{
"id": "2-1",
"name": "GuildName",
"member_count": 10
}
/api/guild/{guild_id}/power/statsGet guild power statistics.
webapp-guild-power-stats| Name | Type | Required | Format | Description |
|---|---|---|---|---|
guild_id |
string | Yes | guild-id | Guild identifier |
/api/guild/{guild_id}/rosterGet guild roster.
webapp-guild-roster| Name | Type | Required | Format | Description |
|---|---|---|---|---|
guild_id |
string | Yes | guild-id | Guild identifier |
/api/guild/{guild_id}/planet/complete/countGet completed planet count for guild.
webapp-guild-planet-complete-count| Name | Type | Required | Format | Description |
|---|---|---|---|---|
guild_id |
string | Yes | guild-id | Guild identifier |
Last Updated: January 1, 2026