Back to Examples

DexPaprika

Discover DexPaprika: your go-to API for real-time crypto and DeFi data. Seamlessly integrate with ChatGPT and enhance your projects today!

Lines
92
Sections
2

Want your own llms.txt file?

Generate a professional, AI-friendly file for your website in minutes!

llms.txt Preview

# DexPaprika API

## Docs

- [About Us & Media Kit](https://docs.dexpaprika.com/about.md): Learn what DexPaprika does, our connection to CoinPaprika, and download our media kit with logos and icons.
- [ChatGPT Actions integration](https://docs.dexpaprika.com/ai-integration/chatgpt-actions.md): Integrate DexPaprika data with ChatGPT using OpenAPI actions for real-time crypto and DeFi data access directly in your conversations.
- [Integrating Documentation with Cursor IDE](https://docs.dexpaprika.com/ai-integration/cursor-ide-integration.md): Learn how to integrate DexPaprika documentation and MCP server directly into Cursor IDE for enhanced development workflows with real-time crypto data access.
- [DexPaprika Hosted MCP Server](https://docs.dexpaprika.com/ai-integration/hosted-mcp-server.md): Access real-time DeFi data in Claude, Cursor, and other MCP-compatible tools without any installation or setup. Our hosted MCP server provides instant access to comprehensive DEX data across 20+ blockchains.
- [Installing MCP Server for DexPaprika](https://docs.dexpaprika.com/ai-integration/mcp.md): Integrating DexPaprika data with Claude.ai using Model Context Protocol (MCP)
- [Integrating Documentation with VS Code](https://docs.dexpaprika.com/ai-integration/vscode-ide-integration.md): Learn how to integrate DexPaprika documentation and the hosted MCP server directly into VS Code for enhanced AI-assisted workflows.
- [Get a list of available dexes on a network.](https://docs.dexpaprika.com/api-reference/dexes/get-a-list-of-available-dexes-on-a-network.md)
- [null](https://docs.dexpaprika.com/api-reference/introduction.md)
- [Get a list of available blockchain networks.](https://docs.dexpaprika.com/api-reference/networks/get-a-list-of-available-blockchain-networks.md): Retrieve a list of all supported blockchain networks, including metadata
like display names and associated details. Ideal for building dropdowns 
or querying supported networks for your application.

- [Get a pool on a network.](https://docs.dexpaprika.com/api-reference/pools/get-a-pool-on-a-network.md): Retrieve detailed information about a specific on-chain pool, 
including token pairs, current price data, and volume metrics.

- [Get OHLCV data for a pool pair.](https://docs.dexpaprika.com/api-reference/pools/get-ohlcv-data-for-a-pool-pair.md): Retrieves Open-High-Low-Close-Volume (OHLCV) data for a specific pool, 
potentially over a specified time range.  
- **start** is **required** to set the beginning of the data window.  
- **end** is optional; if omitted, data is returned for the "start" date only.  
- **limit** can control how many data points to retrieve (e.g., maximum of 100).  
- **interval** defines the granularity (e.g., 1h, 4h, 1d).  
- **inverted_price** indicates whether to invert the main price ratio.

- [Get top X pools. (DEPRECATED)](https://docs.dexpaprika.com/api-reference/pools/get-top-x-pools.md): **THIS ENDPOINT HAS BEEN DEPRECATED AND WILL BE REMOVED.**
It now returns a 410 Gone status. Please refer to our API documentation for alternatives.

---
*Original Description (for historical reference):*
Retrieves a paginated list of top pools from all (or specific) networks.
Allows sorting and ordering, providing aggregated volume, price data,
and token details for each pool.

- [Get top X pools. (DEPRECATED)](https://docs.dexpaprika.com/api-reference/pools/get-top-x-pools-deprecated.md): **THIS ENDPOINT HAS BEEN DEPRECATED AND WILL BE REMOVED.**
It now returns a 410 Gone status. Please refer to our API documentation for alternatives.

---
*Original Description (for historical reference):*
Retrieves a paginated list of top pools from all (or specific) networks.
Allows sorting and ordering, providing aggregated volume, price data,
and token details for each pool.

- [Get top X pools on a network.](https://docs.dexpaprika.com/api-reference/pools/get-top-x-pools-on-a-network.md): Retrieves a paginated list of top pools on a specific network. 
Supports sorting and ordering by different parameters. The response 
includes volume, price data, and token details for each pool.

- [Get top X pools on a network's DEX.](https://docs.dexpaprika.com/api-reference/pools/get-top-x-pools-on-a-networks-dex.md): Retrieves a paginated list of top pools on a specific network's DEX.
Supports sorting and ordering, returning essential price data and token details.

- [Get transactions of a pool on a network. Paging can be used up to 100 pages.](https://docs.dexpaprika.com/api-reference/pools/get-transactions-of-a-pool-on-a-network-paging-can-be-used-up-to-100-pages.md)
- [Search for tokens, pools, and DEXes](https://docs.dexpaprika.com/api-reference/search/search-for-tokens-pools-and-dexes.md): Allows users to search across multiple entities (tokens, pools, and DEXes) 
in a single query. Useful for quickly finding resources by name, symbol, or ID.

- [Get a token's latest data on a network.](https://docs.dexpaprika.com/api-reference/tokens/get-a-tokens-latest-data-on-a-network.md): Retrieves detailed information about a specific token on the given network, 
including latest price, metadata, status, and recent summary metrics such as price changes 
and volumes over multiple timeframes. <Info> The `token_supply` is a raw integer. To get the actual supply, move the decimal point left by the `decimals` value. Example: supply = `raw_supply` / 10^`decimals` </Info>
- [Get top X pools for a token.](https://docs.dexpaprika.com/api-reference/tokens/get-top-x-pools-for-a-token.md): Retrieves a paginated list of liquidity pools that involve the specified token,
including details like current price, volume in USD, and tokens present in each pool.
Useful for analytics, DEX front-ends, or portfolio tracking.

- [Retrieve high-level asset statistics](https://docs.dexpaprika.com/api-reference/utils/retrieve-high-level-asset-statistics.md): Provides a snapshot of the total number of chains, factories, pools, 
and tokens tracked by this API. Ideal for overview dashboards or 
quick system capacity checks.

- [Changelog](https://docs.dexpaprika.com/changelog/changelog.md): Track all updates and changes to DexPaprika API
- [DexPaprika DEX API Go SDK — On‑chain Liquidity & Swap Data Client](https://docs.dexpaprika.com/get-started/sdk-go.md): The official Go client library for the DexPaprika API, providing easy access to decentralized exchange data across multiple blockchain networks
- [DexPaprika DEX API PHP SDK — On‑chain Liquidity & Swap Data Client](https://docs.dexpaprika.com/get-started/sdk-php.md): The official PHP client library for the DexPaprika API, providing easy access to decentralized exchange data across multiple blockchain networks
- [DexPaprika DEX API Python SDK — On‑chain Liquidity & Swap Data Client](https://docs.dexpaprika.com/get-started/sdk-python.md): The official Python client library for the DexPaprika API, providing easy access to decentralized exchange data across multiple blockchain networks
- [DexPaprika DEX API TypeScript SDK — On‑chain Liquidity & Swap Data Client](https://docs.dexpaprika.com/get-started/sdk-ts.md): JavaScript client library for accessing decentralized exchange data across multiple blockchain networks
- [DexPaprika Crypto DEX API — On‑chain Liquidity & Swap Data for Developers](https://docs.dexpaprika.com/introduction.md): Real‑time DEX and on‑chain cryptocurrency data: liquidity pools, swaps, token prices, and transactions across multiple networks via REST and WebSocket.
- [Coverage checker](https://docs.dexpaprika.com/tools/coverage-checker.md): Use this tool to quickly verify whether an asset exists in DexPaprika’s dataset. Enter a contract address, token name, or ticker symbol; we’ll search our coverage and show the closest matches.
- [Build a Crypto Price Alert Bot](https://docs.dexpaprika.com/tutorials/crypto-alert-bot.md): Learn how to create a real-time cryptocurrency price alert system using DexPaprika API and Telegram
- [Fetching Token Prices](https://docs.dexpaprika.com/tutorials/fetch-token-price.md): Learn how to retrieve the price of any token using DexPaprika API with simple curl commands.
- [Find New Crypto Pools and Token Launches](https://docs.dexpaprika.com/tutorials/find-new-pools.md): Discover newly created liquidity pools across 20+ blockchains. Perfect for finding new tokens, arbitrage opportunities, and emerging DeFi projects early.
- [Local crypto analytics with DuckDB](https://docs.dexpaprika.com/tutorials/local-analytics-with-duckdb.md): Build a powerful, local crypto analytics database with DuckDB. This tutorial guides you through creating an ETL pipeline for Uniswap v3 data to run complex SQL queries instantly.
- [Scalable time-series analytics with InfluxDB](https://docs.dexpaprika.com/tutorials/real-time-analytics-with-influxdb.md): Harness InfluxDB, a best-in-class time-series database, to build a powerful crypto analytics pipeline that scales from real-time monitoring to large historical datasets.
- [Get Token Price History and OHLCV Data](https://docs.dexpaprika.com/tutorials/retrieve-historical-data.md): Get historical crypto price data (OHLCV) for any token across 20+ blockchains. Perfect for building charts, backtesting strategies, and price analysis.
- [Crypto analytics with ClickHouse](https://docs.dexpaprika.com/tutorials/scaling-with-clickhouse.md): Take your crypto analytics to the next level with ClickHouse. This guide shows you how to build a production-grade data pipeline for massive datasets and lightning-fast queries.
- [API Tutorials](https://docs.dexpaprika.com/tutorials/tutorial_intro.md): Learn how to use the DexPaprika API with step-by-step tutorials.


## Optional

- [REST API Reference](https://docs.dexpaprika.com/api-reference/introduction)
- [Discord Community](https://discord.gg/DhJge5TUGM)
- [DexPaprika](https://dexpaprika.com)
- [CoinPaprika](https://coinpaprika.com)
- [CoinPaprika on X](https://x.com/coinpaprika)

Ready to create yours?

Generate a professional llms.txt file for your website in minutes with our AI-powered tool.

Generate Your llms.txt File