Skip to main content
GET
/
networks
/
{network}
/
tokens
/
top
Get top tokens on a network.
curl --request GET \
  --url https://api.dexpaprika.com/networks/{network}/tokens/top
{
  "tokens": [
    {
      "address": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "chain": "<string>",
      "decimals": 123,
      "has_image": true,
      "price_usd": 123,
      "fdv": 123,
      "liquidity_usd": 123,
      "pools": 123,
      "24h": {
        "volume_usd": 123,
        "buys": 123,
        "sells": 123,
        "txns": 123,
        "last_price_usd_change": 123
      },
      "1h": {
        "volume_usd": 123,
        "buys": 123,
        "sells": 123,
        "txns": 123,
        "last_price_usd_change": 123
      },
      "5m": {
        "volume_usd": 123,
        "buys": 123,
        "sells": 123,
        "txns": 123,
        "last_price_usd_change": 123
      }
    }
  ],
  "page_info": {
    "limit": 123,
    "page": 123,
    "total_items": 123,
    "total_pages": 123
  }
}

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

page
integer

Zero-based page index for paginated results.

Required range: 0 <= x <= 1000
limit
integer
default:50

Number of items to return per page (max 100).

Required range: 1 <= x <= 100
order_by
enum<string>
default:volume_usd

Field by which to order the returned data.

Available options:
volume_24h,
price_usd,
liquidity_usd,
txns,
price_change
sort
enum<string>
default:desc

Sort direction (ascending or descending).

Available options:
asc,
desc

Response

Successful operation

The paginated list of top tokens.

tokens
object[]

An array of enriched top token items.

page_info
object

Pagination details for the current response.