Search for tokens, pools, and DEXes
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.
curl --request GET \
--url https://api.dexpaprika.com/search
{
"tokens": [
{
"id": "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
"name": "OFFICIAL TRUMP",
"symbol": "TRUMP",
"chain": "solana",
"decimals": 6,
"total_supply": 1000000000000000,
"fdv": 1000000000000000000,
"description": "",
"website": "",
"explorer": ""
}
],
"pools": [
{
"id": "A8nPhpCJqtqHdqUk35Uj9Hy2YsGXFkCZGuNwvkD3k7VC",
"dex_id": "LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo",
"dex_name": "Meteora",
"chain": "solana",
"created_at_block_number": 314590039,
"created_at": "2025-01-17T14:19:03.000Z",
"volume_usd": 104433720.13085766,
"transactions": 17585,
"price_usd": 26.60780176027208,
"last_price_change_usd_5m": 0,
"last_price_change_usd_1h": -1.3047021633422,
"last_price_change_usd_24h": -8.886488130608807,
"tokens": [
{
"id": "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
"name": "OFFICIAL TRUMP",
"symbol": "TRUMP",
"chain": "solana",
"decimals": 6,
"total_supply": 1000000000000000,
"description": "",
"website": "",
"explorer": "",
"added_at": "2025-01-17T23:26:21.000Z"
},
{
"id": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"name": "USD Coin",
"symbol": "USDC",
"chain": "solana",
"decimals": 6,
"total_supply": 0,
"description": "",
"website": "",
"explorer": "",
"added_at": "2024-10-04T08:30:05.000Z"
}
]
}
],
"dexes": []
}
Query Parameters
The search term to match against tokens, pools, or DEX identifiers.
For example: "uniswap
", "usd coin
", or "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN
" (for Solana).
Response
An array of matching pools.
Information about a specific liquidity pool, including price and volume data.
Unique identifier or address of the pool.
Identifier of the DEX where this pool resides.
Human-readable DEX name (e.g., "Uniswap V3").
Block number at which this pool was created.
Timestamp (ISO-8601) indicating when the pool was created or recorded.
The total USD volume in this pool over a certain period (context-specific).
The total number of transactions involving this pool.
Current price in USD (often representing a ratio of two tokens in the pool).
USD price change over the last 5 minutes, either as a percentage or absolute value.
USD price change over the last 1 hour, either as a percentage or absolute value.
USD price change over the last 24 hours, either as a percentage or absolute value.
Trading fee (e.g., 0.3 for 0.3%) associated with this pool.
The tokens participating in this liquidity pool.
Was this page helpful?
curl --request GET \
--url https://api.dexpaprika.com/search
{
"tokens": [
{
"id": "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
"name": "OFFICIAL TRUMP",
"symbol": "TRUMP",
"chain": "solana",
"decimals": 6,
"total_supply": 1000000000000000,
"fdv": 1000000000000000000,
"description": "",
"website": "",
"explorer": ""
}
],
"pools": [
{
"id": "A8nPhpCJqtqHdqUk35Uj9Hy2YsGXFkCZGuNwvkD3k7VC",
"dex_id": "LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo",
"dex_name": "Meteora",
"chain": "solana",
"created_at_block_number": 314590039,
"created_at": "2025-01-17T14:19:03.000Z",
"volume_usd": 104433720.13085766,
"transactions": 17585,
"price_usd": 26.60780176027208,
"last_price_change_usd_5m": 0,
"last_price_change_usd_1h": -1.3047021633422,
"last_price_change_usd_24h": -8.886488130608807,
"tokens": [
{
"id": "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
"name": "OFFICIAL TRUMP",
"symbol": "TRUMP",
"chain": "solana",
"decimals": 6,
"total_supply": 1000000000000000,
"description": "",
"website": "",
"explorer": "",
"added_at": "2025-01-17T23:26:21.000Z"
},
{
"id": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"name": "USD Coin",
"symbol": "USDC",
"chain": "solana",
"decimals": 6,
"total_supply": 0,
"description": "",
"website": "",
"explorer": "",
"added_at": "2024-10-04T08:30:05.000Z"
}
]
}
],
"dexes": []
}