PancakeSwap Summary API

The Summary API from PancakeSwap — 1 operation(s) for summary.

Operations 1

GET /v2/summary Get top pairs summary #

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/pancakeswap-summary-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

pancakeswap-summary-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PancakeSwap Info Summary API
  description: 'REST API providing on-chain data for the top ~1000 PancakeSwap trading pairs, tokens, and market summaries sourced from underlying subgraphs. Used by market aggregators such as CoinMarketCap to surface liquidity and volume data. Responses are cached for 5 minutes.

    '
  version: '2.0'
  contact:
    name: PancakeSwap
    url: https://pancakeswap.finance
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
- url: https://api.pancakeswap.info/api
  description: PancakeSwap Info API
tags:
- name: Summary
paths:
  /v2/summary:
    get:
      operationId: getSummary
      summary: Get top pairs summary
      description: 'Returns data for the top ~1000 PancakeSwap pairs, sorted by reserves. Results are cached for 5 minutes.

        '
      tags:
      - Summary
      responses:
        '200':
          description: Successful response with pair summary data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SummaryResponse'
              example:
                updated_at: 1234567890
                data:
                  0xBEPADDR_WBNB:0xBEPADDR_USDT:
                    price: '0.000243902'
                    base_volume: '183220.26'
                    quote_volume: '44.68'
                    liquidity: '183220.26'
                    liquidity_BNB: '44.68'
components:
  schemas:
    SummaryResponse:
      type: object
      properties:
        updated_at:
          type: integer
          format: int64
          description: Unix timestamp of the last data update
          example: 1234567890
        data:
          type: object
          description: Map of pair identifier to pair summary data
          additionalProperties:
            $ref: '#/components/schemas/PairSummaryData'
    PairSummaryData:
      type: object
      description: Summary data for a trading pair
      properties:
        price:
          type: string
          description: Current price of the pair
          example: '0.000243902'
        base_volume:
          type: string
          description: 24-hour base token volume
          example: '183220.26'
        quote_volume:
          type: string
          description: 24-hour quote token volume
          example: '44.68'
        liquidity:
          type: string
          description: Total liquidity in USD
          example: '183220.26'
        liquidity_BNB:
          type: string
          description: Total liquidity in BNB
          example: '44.68'