Gala Games Competition API

The competition API from Gala Games — 8 operation(s) for competition.

Operations 8

GET /competition/active #
GET /competition/{id} #
GET /competition/{id}/stats #
GET /competition/{id}/participant/{wallet} #
GET /competition/{id}/leaderboard #
GET /competition/{id}/inventory/{wallet} #
POST /competition/{id}/enroll #
POST /competition/{id}/open-chest #

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-competition-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-competition-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gala DeFi Backend Competition API
  description: OpenAPI reference for DeFi backend endpoints.
  version: 0.0.1
  contact: {}
servers: []
tags:
- name: competition
  description: ''
paths:
  /competition/active:
    get:
      operationId: CompetitionController_getActiveCompetition
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      tags:
      - competition
  /competition/{id}:
    get:
      operationId: CompetitionController_getCompetition
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      tags:
      - competition
  /competition/{id}/stats:
    get:
      operationId: CompetitionController_getCompetitionStats
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      tags:
      - competition
  /competition/{id}/participant/{wallet}:
    get:
      operationId: CompetitionController_getParticipant
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      - name: wallet
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      tags:
      - competition
  /competition/{id}/leaderboard:
    get:
      operationId: CompetitionController_getLeaderboard
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      - name: wallet
        required: false
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      tags:
      - competition
  /competition/{id}/inventory/{wallet}:
    get:
      operationId: CompetitionController_getInventory
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      - name: wallet
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      tags:
      - competition
  /competition/{id}/enroll:
    post:
      operationId: CompetitionController_enroll
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnrollDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
      tags:
      - competition
  /competition/{id}/open-chest:
    post:
      operationId: CompetitionController_openChest
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OpenChestDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
      tags:
      - competition
components:
  schemas:
    EnrollDto:
      type: object
      properties:
        walletAddress:
          type: string
      required:
      - walletAddress
    OpenChestDto:
      type: object
      properties:
        walletAddress:
          type: string
        tierNumber:
          type: number
          minimum: 1
          maximum: 10
      required:
      - walletAddress
      - tierNumber
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key
      description: Required for admin endpoints protected by ApiKeyGuard.