Skip to main content
GET
/
api
/
v1
/
pairs
List pools (pairs)
curl --request GET \
  --url https://api.dexploit.dev/api/v1/pairs \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "pair_address": "<string>",
      "protocol": "pumpfun",
      "recent_volume_sol": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dexploit.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Query Parameters

token_address
string

Token mint to find pools for. When set, the response is sorted by recent SOL volume.

protocol
enum<string>

DEX protocol to filter by.

Available options:
pumpfun,
pumpswap,
raydium,
meteora
limit
integer
default:50
Required range: 1 <= x <= 500

Response

List of pools

success
enum<boolean>
Available options:
true
data
object[]