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.

List of blockchain networks.

id
string

String identifier for the network (e.g., "ethereum", "solana").

display_name
string

Human-readable display name for the network (e.g., "Ethereum").

I