gg.infinitetavern.tavern.getAdventurerVault

infinitetavern.gg

Documentation

Retrieve a player's Adventurer's Vault — their pinned trophy replays showcasing memorable victories and battles.

main query

Retrieve a player's Adventurer's Vault — their pinned trophy replays showcasing memorable victories and battles.

Parameters

did string did Required

The DID of the adventurer whose vault to retrieve.

Output

Encodingapplication/json
trophies array Required

The player's vault trophies, ordered by pinnedAt descending.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
The DID of the adventurer whose vault to retrieve.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "trophies"
      ],
      "properties": {
        "trophies": {
          "type": "array",
          "items": {
            "$ref": "#/defs/trophyView"
          },
          "description": "The player's vault trophies, ordered by pinnedAt descending."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "The DID of the adventurer whose vault to retrieve."
      }
    }
  },
  "description": "Retrieve a player's Adventurer's Vault — their pinned trophy replays showcasing memorable victories and battles."
}
trophyView object

No description available.

Properties

chronicleUri string at-uri Required

AT URI of the player's chronicle.entry for this match.

cid string Required

CID of the vaultTrophy record.

heroKey string Required

Internal key of the hero played.

heroName string Required

Display name of the hero played.

note string Optional

Player's note about the trophy.

pinnedAt string datetime Required

When the trophy was pinned.

placement integer Required

Final placement in the match.

replayUri string at-uri Required

AT URI of the referenced chronicle.replay.

seasonNumber integer Required

Season number of the match.

uri string at-uri Required

AT URI of the vaultTrophy record.

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid",
    "replayUri",
    "chronicleUri",
    "placement",
    "heroKey",
    "heroName",
    "seasonNumber",
    "pinnedAt"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "description": "CID of the vaultTrophy record."
    },
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT URI of the vaultTrophy record."
    },
    "note": {
      "type": "string",
      "description": "Player's note about the trophy."
    },
    "heroKey": {
      "type": "string",
      "description": "Internal key of the hero played."
    },
    "heroName": {
      "type": "string",
      "description": "Display name of the hero played."
    },
    "pinnedAt": {
      "type": "string",
      "format": "datetime",
      "description": "When the trophy was pinned."
    },
    "placement": {
      "type": "integer",
      "description": "Final placement in the match."
    },
    "replayUri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT URI of the referenced chronicle.replay."
    },
    "chronicleUri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT URI of the player's chronicle.entry for this match."
    },
    "seasonNumber": {
      "type": "integer",
      "description": "Season number of the match."
    }
  }
}

Lexicon Garden

@