games.gamesgamesgamesgames.getContributionStats

gamesgamesgamesgames.games

Documentation

Get contribution statistics and badges for a user.

main query

Get contribution statistics and badges for a user.

Parameters

did string did Required

A decentralized identifier (DID).

Output

Encodingapplication/json
badges array Required

No description available.

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
A decentralized identifier (DID).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "stats",
        "badges"
      ],
      "properties": {
        "stats": {
          "ref": "#contributionStats",
          "type": "ref"
        },
        "badges": {
          "type": "array",
          "items": {
            "ref": "#badge",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did"
      }
    }
  },
  "description": "Get contribution statistics and badges for a user."
}
badge object

No description available.

Properties

description string Optional

No description available.

id string Required

No description available.

name string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    }
  }
}
contributionStats object

No description available.

Properties

additions integer Required

No description available.

corrections integer Required

No description available.

newGames integer Required

No description available.

ownerAccepted integer Required

No description available.

totalContributions integer Required

No description available.

uniqueEntities integer Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "totalContributions",
    "corrections",
    "additions",
    "newGames",
    "uniqueEntities",
    "ownerAccepted"
  ],
  "properties": {
    "newGames": {
      "type": "integer"
    },
    "additions": {
      "type": "integer"
    },
    "corrections": {
      "type": "integer"
    },
    "ownerAccepted": {
      "type": "integer"
    },
    "uniqueEntities": {
      "type": "integer"
    },
    "totalContributions": {
      "type": "integer"
    }
  }
}

Lexicon Garden

@