Skip to main content
GET
/
networks
Get a list of available blockchain networks.
curl --request GET \
  --url https://api.dexpaprika.com/networks
[
  {
    "id": "ethereum",
    "display_name": "Ethereum"
  },
  {
    "id": "fantom",
    "display_name": "Fantom"
  },
  {
    "id": "solana",
    "display_name": "Solana"
  }
]

Endpoint overview

Enumerate supported blockchain networks and canonical ids for requests.

FAQs

An id used in all endpoints plus display metadata and, where available, counts of related entities.
Prefer lowercase canonical ids like ethereum, solana. Use this list as the source of truth.
Call the network DEXes endpoint and then drill into pools for each DEX.

Response

A list of available blockchain networks.

id
string
required

The identifier of the blockchain network.

Example:

"ethereum"

display_name
string
required

Human readable name of the blockchain network.

Example:

"Ethereum"

volume_usd_24h
number
required

Total trading volume in USD over the last 24 hours across all DEXes on the network.

Example:

921653477.2562501

txns_24h
integer
required

Total number of transactions across all DEXes on the network in the last 24 hours.

Example:

101546

pools_count
integer
required

Total number of active liquidity pools across all DEXes on the network.

Example:

4583