Skip to main content
GET
/
networks
/
{network}
/
multi
/
prices
Get batched prices for multiple tokens on a network.
curl --request GET \
  --url https://api.dexpaprika.com/networks/{network}/multi/prices
[
  {
    "id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
    "chain": "ethereum",
    "price_usd": 4400.569711292153
  },
  {
    "id": "0xdac17f958d2ee523a2206206994597c13d831ec7",
    "chain": "ethereum",
    "price_usd": 1.0002529851244053
  }
]

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

tokens
string[]
required

The token contract address. To query multiple tokens, repeat this parameter for each address. For example: ?tokens=0xc02...ec7&tokens=0xda...1ec7

Response

Successful operation. Returns a list of prices.

An array of price objects. Tokens for which a price could not be found are omitted from the list.

chain
string

The blockchain identifier.

Example:

"ethereum"

id
string

The unique identifier for the token.

Example:

"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"

price_usd
number

The current price of the token in USD.

Example:

1850.75

I