T TraderMarketCap

Developer API

TraderMarketCap API Docs

Build with TraderMarketCap market listings, asset profiles, movers, TNK ecosystem rows, and DEX pair previews.

Listings1000+Market feed + TNK registry
Versionv1Public preview
FormatJSONREST endpoints
AccessFreePremium tiers planned

Available Endpoints

All endpoints return JSON and include an ok flag, timestamp, source status, and rows or asset data where applicable.

Endpoint Name Description
/api/tmc API index Lists version, listing count, and available endpoints.
/api/tmc/markets Markets Full market feed with current listings.
/api/tmc/assets Assets Asset list. Supports ?limit=.
/api/tmc/assets/:slug Single asset Lookup one asset by slug, such as bitcoin or tnk.
/api/tmc/gainers Top gainers Assets sorted by strongest 24h positive move. Supports ?limit=.
/api/tmc/losers Top losers Assets sorted by largest 24h negative move. Supports ?limit=.
/api/tmc/trending Trending High-rank verified assets by market cap. Supports ?limit=.
/api/tmc/tnk TNK ecosystem TNK, TAP, DMT-NAT, BX, registry counts, and source status.
/api/tmc/dex-pairs DEX pairs TracSwap and TNK ecosystem pair preview rows.
/api/tmc/listing-requests Listing requests GET queue status or POST a listing request into the local review queue.
Example

Get 10 assets

GET /api/tmc/assets?limit=10
Example

Get Bitcoin

GET /api/tmc/assets/bitcoin
Example

Top gainers

GET /api/tmc/gainers?limit=5
Example

TNK ecosystem

GET /api/tmc/tnk

Example JSON Shape

The market values change, but the response shape is designed for dashboards, bots, and ecosystem tools.

{
  "ok": true,
  "product": "TraderMarketCap",
  "endpoint": "assets",
  "count": 1,
  "total": 1004,
  "sourceError": null,
  "rows": [
    {
      "asset_id": "bitcoin",
      "slug": "bitcoin",
      "symbol": "BTC",
      "name": "Bitcoin",
      "verification_status": "verified",
      "source_label": "TraderMarketCap Market Feed",
      "token_page": "/token/bitcoin"
    }
  ]
}