Search
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.
GET
/
search
Copy
curl --request GET \
--url https://api.dexpaprika.com/search
Copy
{
"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
200
application/json
successful operation
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://api.dexpaprika.com/search
Copy
{
"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": []
}
Assistant
Responses are generated using AI and may contain mistakes.