Gala Games Leaderboard API

The leaderboard API from Gala Games — 4 operation(s) for leaderboard.

Operations 4

GET /leaderboard Get leaderboard for a season #
GET /leaderboard/seasons Get all leaderboard seasons #
GET /leaderboard/{wallet}/position/{seasonId} Get user position in leaderboard #
GET /leaderboard/{wallet}/breakdown/{seasonId} Get user breakdown in leaderboard #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/gala-games-leaderboard-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

gala-games-leaderboard-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gala DeFi Backend Leaderboard API
  description: OpenAPI reference for DeFi backend endpoints.
  version: 0.0.1
  contact: {}
servers: []
tags:
- name: leaderboard
paths:
  /leaderboard:
    get:
      description: Get the leaderboard for a specific season.
      operationId: LeaderboardController_getLeaderboard
      parameters:
      - name: seasonId
        required: true
        in: query
        description: The unique identifier for the leaderboard season
        schema:
          minimum: 1
          example: 1
          type: number
      responses:
        '200':
          description: ''
      summary: Get leaderboard for a season
      tags:
      - leaderboard
  /leaderboard/seasons:
    get:
      description: Get a list of all available leaderboard seasons.
      operationId: LeaderboardController_getLeaderboardSeasons
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LeaderboardSeason'
      summary: Get all leaderboard seasons
      tags:
      - leaderboard
  /leaderboard/{wallet}/position/{seasonId}:
    get:
      description: Get the rank and position of a user in a specific season.
      operationId: LeaderboardController_getUserPosition
      parameters:
      - name: wallet
        required: true
        in: path
        schema:
          type: string
      - name: seasonId
        required: true
        in: path
        schema:
          type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      summary: Get user position in leaderboard
      tags:
      - leaderboard
  /leaderboard/{wallet}/breakdown/{seasonId}:
    get:
      description: Get a detailed breakdown of a user's score in a specific season.
      operationId: LeaderboardController_getUserBreakdown
      parameters:
      - name: wallet
        required: true
        in: path
        schema:
          type: string
      - name: seasonId
        required: true
        in: path
        schema:
          type: number
      - name: page
        required: false
        in: query
        schema:
          minimum: 1
          default: 1
          type: number
      - name: limit
        required: false
        in: query
        schema:
          minimum: 1
          maximum: 100
          default: 10
          type: number
      responses:
        '200':
          description: ''
      summary: Get user breakdown in leaderboard
      tags:
      - leaderboard
components:
  schemas:
    LeaderboardSeason:
      type: object
      properties: {}
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key
      description: Required for admin endpoints protected by ApiKeyGuard.