PancakeSwap Leaderboard API

The Leaderboard API from PancakeSwap — 2 operation(s) for leaderboard.

Operations 2

GET /leaderboard/global Get global leaderboard #
GET /leaderboard/team/{id} Get team leaderboard #

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-leaderboard-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-leaderboard-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PancakeSwap Profile Leaderboard API
  description: 'REST API for PancakeSwap user profile data including usernames, leaderboard rankings by trading volume, team competitions, and profile registration. Supports CORS for cross-origin access.

    '
  version: '1.0'
  contact:
    name: PancakeSwap
    url: https://pancakeswap.finance
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
- url: https://profile.pancakeswap.com/api
  description: PancakeSwap Profile API
tags:
- name: Leaderboard
paths:
  /leaderboard/global:
    get:
      operationId: getGlobalLeaderboard
      summary: Get global leaderboard
      description: Returns global leaderboard ranked by trading volume in descending order.
      tags:
      - Leaderboard
      responses:
        '200':
          description: Successful response with global leaderboard data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LeaderboardResponse'
  /leaderboard/team/{id}:
    get:
      operationId: getTeamLeaderboard
      summary: Get team leaderboard
      description: Returns team-specific leaderboard ranked by trading volume in descending order.
      tags:
      - Leaderboard
      parameters:
      - name: id
        in: path
        required: true
        description: Team identifier
        schema:
          type: integer
          minimum: 1
        example: 1
      responses:
        '200':
          description: Successful response with team leaderboard data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LeaderboardResponse'
        '404':
          description: Team not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LeaderboardEntry:
      type: object
      properties:
        rank:
          type: integer
          description: Player's rank on the leaderboard
          example: 1
        address:
          type: string
          description: Player's wallet address
          example: '0x1234567890abcdef1234567890abcdef12345678'
        volume:
          type: number
          format: float
          description: Player's trading volume in USD
          example: 5000000.0
        teamId:
          type: integer
          description: Player's assigned team ID
          example: 2
    LeaderboardResponse:
      type: object
      properties:
        total:
          type: integer
          description: Total number of participants
          example: 10000
        volume:
          type: number
          format: float
          description: Combined trading volume in USD
          example: 1000000000.0
        data:
          type: array
          description: Array of leaderboard entries
          items:
            $ref: '#/components/schemas/LeaderboardEntry'
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
          example: User not found
        message:
          type: string
          description: Detailed error description
          example: No user found with the provided address