Gala Games Price Oracle API

The price-oracle API from Gala Games — 1 operation(s) for price-oracle.

Operations 1

GET /price-oracle/fetch-price Fetch price from oracle #

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-price-oracle-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-price-oracle-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gala DeFi Backend Price Oracle API
  description: OpenAPI reference for DeFi backend endpoints.
  version: 0.0.1
  contact: {}
servers: []
tags:
- name: price-oracle
  description: ''
paths:
  /price-oracle/fetch-price:
    get:
      description: Fetch the current price of a token from the oracle.
      operationId: PriceOracleController_fetchPrice
      parameters:
      - name: token
        required: true
        in: query
        description: Token symbol to fetch the price for
        schema:
          pattern: .*
          example: GALA$Unit$none$none
          type: string
      - name: at
        required: false
        in: query
        schema:
          format: date-time
          type: string
      - name: from
        required: false
        in: query
        schema:
          format: date-time
          type: string
      - name: to
        required: false
        in: query
        schema:
          format: date-time
          type: string
      - name: page
        required: false
        in: query
        schema:
          minimum: 1
          type: number
      - name: limit
        required: false
        in: query
        schema:
          minimum: 1
          maximum: 50
          type: number
      - name: order
        required: false
        in: query
        schema:
          type: string
          enum:
          - asc
          - desc
      - name: checkMutualExclusion
        required: true
        in: query
        schema:
          default: true
          allOf:
          - $ref: '#/components/schemas/Object'
      responses:
        '200':
          description: ''
      summary: Fetch price from oracle
      tags:
      - price-oracle
components:
  schemas:
    Object:
      type: object
      properties: {}
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key
      description: Required for admin endpoints protected by ApiKeyGuard.