Skip to main content
GET
/
networks
/
{network}
/
dexes
Get a list of available dexes on a network.
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
  }
}

Endpoint overview

List decentralized exchanges available on a specific network.

FAQs

Identifier, display name, and often counts/metrics used to navigate to pools.
Call the DEX pools endpoint with the same network and dex id.
Yes; ids are stable across requests and are used throughout the API.

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 100).

Required range: 1 <= x <= 100
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

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.

I