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
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.dexpaprika.com/llms.txt

Use this file to discover all available pages before exploring further.

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

A comma-separated list of token contract addresses.

Constraints:

  • A maximum of 10 token addresses can be provided.
  • The total length of the string must not exceed 2000 characters.

Example: ?tokens=0xc02...cc2,0xdac...ec7

Maximum array length: 10

Response

Successful operation. Returns a list of prices.

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