Gala Games User API

The user API from Gala Games — 3 operation(s) for user.

Operations 3

GET /user/token-list Fetch user token balances #
GET /user/fetch-gala-balance Fetch user GALA balance #
GET /user/assets Fetch user assets #

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-user-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-user-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gala DeFi Backend User API
  description: OpenAPI reference for DeFi backend endpoints.
  version: 0.0.1
  contact: {}
servers: []
tags:
- name: user
  description: ''
paths:
  /user/token-list:
    get:
      description: Returns all supported tokens + the user's balance for each (even if 0).
      operationId: UserController_fetchTokens
      parameters:
      - name: search
        required: false
        in: query
        description: Search term for filtering tokens
        schema:
          example: GALA
          type: string
      - name: tokenName
        required: false
        in: query
        description: Filter by specific token name
        schema:
          example: GALA
          type: string
      - name: page
        required: false
        in: query
        description: Page number for pagination (starts at 1)
        schema:
          minimum: 1
          example: 1
          type: number
      - name: limit
        required: false
        in: query
        description: Maximum number of items per page; omit to return all
        schema:
          minimum: 1
          maximum: 1000
          example: 10
          type: number
      - name: address
        required: false
        in: query
        description: User wallet address
        schema:
          pattern: ^(eth\|[a-fA-F0-9]{40}|client\|[a-fA-F0-9]{24})$
          example: eth|6742903677106B3156434F61f2731c3516B1aD68
          type: string
      responses:
        '200':
          description: ''
      summary: Fetch user token balances
      tags:
      - user
  /user/fetch-gala-balance:
    get:
      description: Fetches the GALA token balance for a user.
      operationId: UserController_fetchGalaBalance
      parameters:
      - name: userAddress
        required: false
        in: query
        description: User wallet address
        schema:
          pattern: ^(eth\|[a-fA-F0-9]{40}|client\|[a-fA-F0-9]{24})$
          example: eth|6742903677106B3156434F61f2731c3516B1aD68
          type: string
      responses:
        '200':
          description: ''
      summary: Fetch user GALA balance
      tags:
      - user
  /user/assets:
    get:
      description: Returns ONLY the tokens where the user has a positive balance (quantity > 0).
      operationId: UserController_fetchAssets
      parameters:
      - name: search
        required: false
        in: query
        description: Search term for filtering tokens
        schema:
          example: GALA
          type: string
      - name: tokenName
        required: false
        in: query
        description: Filter by specific token name
        schema:
          example: GALA
          type: string
      - name: page
        required: false
        in: query
        description: Page number for pagination (starts at 1)
        schema:
          minimum: 1
          example: 1
          type: number
      - name: limit
        required: false
        in: query
        description: Maximum number of items per page; omit to return all
        schema:
          minimum: 1
          maximum: 1000
          example: 10
          type: number
      - name: address
        required: true
        in: query
        description: User wallet address
        schema:
          pattern: ^(eth\|[a-fA-F0-9]{40}|client\|[a-fA-F0-9]{24})$
          example: eth|6742903677106B3156434F61f2731c3516B1aD68
          type: string
      responses:
        '200':
          description: ''
      summary: Fetch user assets
      tags:
      - user
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key
      description: Required for admin endpoints protected by ApiKeyGuard.