Gala Games Marketplace API

The marketplace API from Gala Games — 2 operation(s) for marketplace.

Operations 2

GET /v1/marketplace/listings Browse active marketplace listings #
GET /v1/marketplace/listings/{id} A single marketplace listing by id #

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-marketplace-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-marketplace-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gala DeFi Backend Marketplace API
  description: OpenAPI reference for DeFi backend endpoints.
  version: 0.0.1
  contact: {}
servers: []
tags:
- name: marketplace
  description: ''
paths:
  /v1/marketplace/listings:
    get:
      description: Merges the asset-channel feed with the cross-channel (brokered) one, so game inventory such as VOX, Mirandus and Node appears alongside asset-channel items. Filtering, sorting and pagination are applied server-side over the merged set.
      operationId: MarketplaceController_getListings
      parameters:
      - name: seller
        required: false
        in: query
        description: Comma-separated seller aliases; a listing matching ANY of them is returned. Send both the `eth|…` and `client|…` forms of a wallet — upstream records sellers under either, so a single form silently returns nothing.
        schema:
          example: client|61b7d20150874774e060edf9,eth|B48d99a6e64aD1766Eb111c807DbD210FdE3b4Ab
      - name: search
        required: false
        in: query
        description: Free-text match over name, collection and class key, e.g. `birdhouse`.
        schema: {}
      - name: collection
        required: false
        in: query
        description: Collection name, e.g. `TownStar`.
        schema: {}
      - name: sort
        required: false
        in: query
        schema:
          enum:
          - recent
          - price_asc
          - price_desc
          type: string
      - name: limit
        required: false
        in: query
        description: Page size (max 50).
        schema:
          example: 24
      - name: page
        required: false
        in: query
        description: 1-based page number.
        schema:
          example: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      summary: Browse active marketplace listings
      tags:
      - marketplace
  /v1/marketplace/listings/{id}:
    get:
      operationId: MarketplaceController_getListing
      parameters:
      - name: id
        required: true
        in: path
        description: The listing's URL-safe handle.
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      summary: A single marketplace listing by id
      tags:
      - marketplace
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key
      description: Required for admin endpoints protected by ApiKeyGuard.