The DexPaprika DEX API provides near real-time data about tokens, liquidity pools, and decentralized exchanges on over 18 blockchains. Below you can find the most popular endpoints that you can use to build your own applications:

The API is currently in beta and we cannot guarantee the stability of the data. Please be aware that the data might be inaccurate or incomplete and therefore should not be used for any critical applications. If you find any issues, please contact us.

Quick Start

We will make a GET request to the Token endpoint in order to get the latest price in USD of TRUMP. All we need is the network ID and the token address.

curl -X GET "https://api.dexpaprika.com/networks/solana/tokens/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

This will return latest data about TRUMP (TRUMP) on Solana:

Response
{
  "id": "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
  "name": "OFFICIAL TRUMP",
  "symbol": "TRUMP",
  "chain": "solana",
  "decimals": 6,
  "total_supply": 1000000000000000,
  "description": "",
  "website": "",
  "explorer": "",
  "added_at": "2025-01-17T23:26:21Z",
  "summary": {
    "price_usd": 13.14091959123721,
    "fdv": 13140919591.23721,
    "liquidity_usd": 149423162.71562782,
    "24h": {
      "volume": 21068441.593753017,
      "volume_usd": 281073979.6428536,
      "sell": 64806,
      "buy": 69661,
      "txns": 134467
    },
    "6h": {
      "volume": 3947009.6413350017,
      "volume_usd": 51291873.69781224,
      "sell": 15636,
      "buy": 16434,
      "txns": 32070
    },
    "1h": {
      "volume": 412765.81969400006,
      "volume_usd": 5443526.242503976,
      "sell": 1965,
      "buy": 1934,
      "txns": 3899
    },
    "30m": {
      "volume": 138223.89740200003,
      "volume_usd": 1826042.0489568561,
      "sell": 666,
      "buy": 942,
      "txns": 1608
    },
    "15m": {
      "volume": 102904.73769500002,
      "volume_usd": 1356865.0163336615,
      "sell": 499,
      "buy": 634,
      "txns": 1133
    },
    "5m": {
      "volume": 16003.968976,
      "volume_usd": 210782.49285099082,
      "sell": 77,
      "buy": 155,
      "txns": 232
    }
  },
  "last_updated": "2025-02-25T13:42:32.093353071Z"
}

Base URL

All API endpoints use the following base URL:

https://api.dexpaprika.com/

Common Use Cases

Here are some popular ways to use our API:

Rate Limits

The API is currently in beta and free to use with a rate limit of:

  • 1 request per second
  • 10,000 requests per day

Need higher limits? Contact us to discuss enterprise options.