GET
/
networks
/
{network}
/
dexes
curl --request GET \
  --url https://api.dexpaprika.com/networks/{network}/dexes
{
  "dexes": [
    {
      "id": "uniswap_v2",
      "name": "Uniswap V2"
    }
  ],
  "page_info": {
    "limit": 100,
    "page": 1,
    "total_items": 30,
    "total_pages": 1
  }
}

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.

Query Parameters

page
integer

Zero-based page index for paginated results.

Required range: 0 <= x <= 1000
limit
integer
default:10

Number of items to return per page (max 500).

Required range: 1 <= x <= 500
sort
enum<string>

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

Available options:
asc,
desc
order_by
enum<string>

How to order the returned data.

Available options:
pool

Response

200
application/json
successful operation

A paginated response containing a list of DEX objects.

dexes
object[]

An array of decentralized exchanges.

page_info
object

Information about the current page in a paginated result set.