Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

Binance Smart Money API

A commercial REST API for Binance Smart Money (formerly the Binance Futures Leaderboard): discover top traders, read their open positions, and pull performance history.

Written in Python with FastAPI and AIOHTTP for asynchronous requests. Uvicorn is used as an ASGI server.

Full documentation and interactive reference: api.apicord.com

Features

  • Trader discovery — rank traders by PNL or ROI over 24h, 3D, 7D, 30D, 90D, 1Y or all time, with optional filtering by account group (AI, featured human, featured AI).
  • Search by name — the same ranking and filter options applied to a keyword search.
  • Trader profiles — performance metrics and account detail for a single trader.
  • Open positions — current positions per trader across USDⓈ-M (UM) and COIN-M (CM) markets.
  • Position and order history — historical positions and orders, filterable by symbol and time range, with cursor pagination.
  • Chart data — ROI, PNL or balance series over any supported time range.
  • Versioned endpoints — versions are served in parallel under their own prefix, so a change on my side does not break existing consumers.

Use cases

  • Copy-trading systems that mirror positions from top traders.
  • Signal bots that forward position changes into Telegram.
  • Trend analysis across trader cohorts.

Authentication

Every request needs an API key in the X-API-KEY header.

X-API-KEY: your-api-key

Responses use 200 on success, 401 for an invalid key, 429 when rate limited, and 500 on a server error.

Endpoints

Base URL: https://api.apicord.com/v4

Endpoint Returns
GET /tradersList Ranked list of traders
GET /traderSearch Traders matching a keyword
GET /traderProfile Profile and metrics for one trader
GET /traderChartData ROI, PNL or balance series
GET /traderOpenPositions Current open positions
GET /traderPositionHistory Historical positions
GET /traderOrderHistory Historical orders

Shared parameter values:

  • timeRange24h, 3D, 7D, 30D, 90D, 1Y, ALL
  • rankingTypePNL, ROI
  • orderDESC, ASC
  • marketTypeUM (USDⓈ-M), CM (COIN-M)
  • accountGroupAI, FEATURED_TRADERS_AI, FEATURED_TRADERS_HUMAN
  • chartDataTypeROI, PNL, BALANCE

Usage

These examples use curl, but any HTTP client works.

Top traders by 7-day ROI

curl -H "X-API-KEY: $API_KEY" \
  "https://api.apicord.com/v4/tradersList?timeRange=7D&rankingType=ROI&order=DESC&onlyShowSharingPosition=true&page=1&rows=20"

Search for a trader by name

curl -H "X-API-KEY: $API_KEY" \
  "https://api.apicord.com/v4/traderSearch?searchKeyword=whale&timeRange=30D&rankingType=PNL&order=DESC&onlyShowSharingPosition=true&page=1&rows=20"

A trader's open USDⓈ-M positions

curl -H "X-API-KEY: $API_KEY" \
  "https://api.apicord.com/v4/traderOpenPositions?topTraderId=TRADER_ID&marketType=UM&page=1&rows=20"

Position history for one symbol

curl -H "X-API-KEY: $API_KEY" \
  "https://api.apicord.com/v4/traderPositionHistory?topTraderId=TRADER_ID&marketType=UM&symbol=BTCUSDT&rows=20"

Response schemas for every endpoint are documented at api.apicord.com.

Access

Plans and API keys: api.apicord.com.

The RapidAPI listing and the old free direct endpoint have been retired, along with the v1 and v2 endpoints they served. If you followed a link to any of them from an earlier version of this README, that is why it did not resolve.

Contact

Telegram @nunnito · support@apicord.com

About

Commercial REST API for Binance Smart Money (formerly the Futures Leaderboard): trader discovery, open positions and performance history. Python, FastAPI, AIOHTTP.

Topics

Resources

Stars

9 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors