GET
/
networks
/
{network}
/
tokens
/
{token_address}
/
pools
curl --request GET \
  --url https://api.dexpaprika.com/networks/{network}/tokens/{token_address}/pools
{
  "pools": [
    {
      "id": "C1MgLojNLWBKADvu9BHdtgzz1oZX4dZ5zGdGcgvvW8Wz",
      "dex_id": "whirLbMiicVdio4qvUfM5KAg6Ct8VwpYzGff3uctyCc",
      "dex_name": "Orca",
      "chain": "solana",
      "volume_usd": 105911239.86515124,
      "created_at": "2024-01-31T04:35:25.000Z",
      "created_at_block_number": 245197261,
      "transactions": 86702,
      "price_usd": 1.0210156606745167,
      "last_price_change_usd_5m": -0.35550231159026024,
      "last_price_change_usd_1h": -0.46553223706307906,
      "last_price_change_usd_24h": -14.938708407216472,
      "fee": 0,
      "tokens": [
        {
          "id": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
          "name": "Jupiter",
          "symbol": "JUP",
          "chain": "solana",
          "decimals": 6,
          "added_at": "2024-09-11T04:37:20.000Z"
        },
        {
          "id": "So11111111111111111111111111111111111111112",
          "name": "Wrapped SOL",
          "symbol": "SOL",
          "chain": "solana",
          "decimals": 9,
          "added_at": "2024-10-04T08:30:05.000Z"
        }
      ]
    }
  ],
  "page_info": {
    "limit": 100,
    "page": 1,
    "total_items": 251,
    "total_pages": 3
  }
}

Path Parameters

network
string
required

Network slug or ID (e.g., 'solana'). You can find the list of supported networks with their IDs here: /networks.

token_address
string
required

Token contract address. Such as JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN for Jupiter on Solana.

Query Parameters

sort
enum<string>

Sort order for the requested data (ascending or descending).

Available options:
asc,
desc
order_by
enum<string>

Field by which to order the returned data.

Available options:
volume_usd,
price_usd,
transactions,
last_price_change_usd_24h,
created_at
address
string

Filter pools that contain this additional token address.

Response

200
application/json
successful operation
pools
object[]

A list of pool objects where the queried token is found.

Information about a specific liquidity pool, including price and volume data.

page_info
object

Details about the current page of results.