Get Guild Royalty Dashboard 💸 - /nft/guild_royalty_data/{guild_id}/dashboard

This endpoint returns a Jinja2 template with the guild's royalty information.

Path Parameters

ParameterDescription

guild_id

The ID of the guild to retrieve information for.

Return Type

ParameterType

request

starlette.requests.Request

guild_id

int

Example Usage

# Get the dashboard for guild with ID 12345
response = requests.get("/nft/guild_royalty_data/12345/dashboard")
print(response.content)

Last updated