Overlay Markets API

Market catalog and metadata.

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/overlay-markets-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 email required.

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

OpenAPI Specification

overlay-markets-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Overlay Market Data Aggregator Markets API
  version: v1
  description: Public, unauthenticated market-data API for the Overlay Protocol — a decentralized perpetual-futures protocol on BNB Smart Chain (chain id 56). Covers the CoinGecko/CMC-style aggregator feed, the market catalog, and the charts price-overview feed. All endpoints are read-only and public. Trading itself is executed on-chain against Overlay smart contracts (Shiva, OverlayV1State); this API surfaces the off-chain data/indexing layer.
  contact:
    name: Overlay Protocol
    url: https://docs.overlay.market/
  x-provenance:
    generated: '2026-07-20'
    method: searched
    source: https://docs.overlay.market/api/aggregator-market-data + live probes of https://api.overlay.market (2026-07-20, HTTP 200)
servers:
- url: https://api.overlay.market
  description: Production
tags:
- name: Markets
  description: Market catalog and metadata.
paths:
  /data/api/markets:
    get:
      operationId: getMarkets
      tags:
      - Markets
      summary: List the market catalog keyed by chain id
      description: Returns the market catalog as an object keyed by chain id (e.g. "56" for BNB Smart Chain), each value an array of market metadata records (name, logo, currency, description/methodology).
      responses:
        '200':
          description: Market catalog keyed by chain id.
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: array
                  items:
                    $ref: '#/components/schemas/Market'
components:
  schemas:
    Market:
      type: object
      description: Market catalog metadata record.
      properties:
        _id:
          type: string
          example: 66d71b2f72d1c12e59686e23
        marketName:
          type: string
          example: Counter-Strike 2 Skins
        logo:
          type: string
        currency:
          type: string
          example: USD
        descriptionText:
          type: string
          description: What the market tracks + methodology.