Back to Home

API Documentation

The DexVolume API provides programmatic access to real-time trading volume data and analytics. Use our API to integrate DexVolume's powerful analytics into your own applications.

REST API

Our RESTful API provides access to all DexVolume data and analytics through simple HTTP requests.

View Documentation →

Webhooks

Set up webhooks to receive real-time notifications when specific events or thresholds are triggered.

View Documentation →

Authentication

Learn how to authenticate your API requests and manage your API keys securely.

View Documentation →

API Reference

Volume Endpoints

GET/api/market-data?dataType=volume&timeframe=1h

Get volume data for a specific timeframe

{
  "volumeData": [
    { "time": "12:00", "volume": 1250000 },
    { "time": "12:15", "volume": 1320000 },
    ...
  ],
  "source": "defillama",
  "timestamp": "2023-05-03T21:02:36.000Z"
}
GET/api/market-data?dataType=coins

Get top coins by volume

{
  "coins": [
    {
      "id": 1,
      "name": "PEPE",
      "symbol": "PEPE",
      "price": 0.000012,
      "volume24h": 12500000,
      ...
    },
    ...
  ],
  "source": "coingecko",
  "timestamp": "2023-05-03T21:02:36.000Z"
}

Market Overview Endpoints

GET/api/market-data?dataType=market

Get market overview data

{
  "marketOverview": {
    "totalVolume24h": 125000000,
    "volumeChange24h": 8.5,
    "activeCoins": 1250,
    "marketSentiment": "Bullish",
    ...
  },
  "source": "defillama",
  "timestamp": "2023-05-03T21:02:36.000Z"
}
GET/api/pump-report?dataType=trading-indicators

Get trading indicators and recommendations

{
  "volumeTrend15m": 12.5,
  "volumeTrend30m": 8.2,
  "volumeTrend1h": 5.7,
  "volumeTrend24h": -3.2,
  "recommendation": "Buy",
  "recommendationReason": "Strong volume growth in short timeframes...",
  "source": "pump.fun",
  "timestamp": "2023-05-03T21:02:36.000Z"
}

Rate Limits and Quotas

Free Tier

  • 100 requests per day
  • Data refreshed every 15 minutes
  • Access to basic endpoints only

Pro Tier

  • 10,000 requests per day
  • Data refreshed every minute
  • Access to all endpoints
  • Webhook support

Enterprise Tier

  • Unlimited requests
  • Real-time data updates
  • Dedicated support
  • Custom endpoints available

Need an API Key?

To start using the DexVolume API, you'll need to register for an API key. It's free to get started!

Register for API Access