Skip to main content
GET
/
networks
/
{network}
/
tokens
/
filter
Advanced token filtering on a specific network.
curl --request GET \
  --url https://api.dexpaprika.com/networks/{network}/tokens/filter
{
  "results": [
    {
      "chain": "solana",
      "address": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
      "volume_usd_24h": 84119865.87,
      "volume_usd_7d": 520000000.56,
      "liquidity_usd": 25796064,
      "fdv_usd": 6692674011.86,
      "txns_24h": 224924,
      "created_at": "2024-09-11T04:37:20.000Z"
    }
  ],
  "page_info": {
    "limit": 123,
    "page": 123,
    "total_items": 123,
    "total_pages": 123
  }
}

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
volume_24h_min
number

Minimum 24-hour volume in USD.

volume_24h_max
number

Maximum 24-hour volume in USD.

volume_7d_min
number

Minimum 7-day volume in USD.

volume_7d_max
number

Maximum 7-day volume in USD.

volume_30d_min
number

Minimum 30-day volume in USD.

volume_30d_max
number

Maximum 30-day volume in USD.

liquidity_usd_min
number

Minimum total token liquidity in USD.

liquidity_usd_max
number

Maximum total token liquidity in USD.

txns_24h_min
integer

Minimum number of transactions in the last 24 hours.

fdv_min
number

Minimum Fully Diluted Valuation in USD.

fdv_max
number

Maximum Fully Diluted Valuation in USD.

created_after
integer

Filters for tokens created after this UNIX timestamp.

created_before
integer

Filters for tokens created before this UNIX timestamp.

sort_by
enum<string>
default:volume_24h

Field by which to sort the returned data.

Available options:
volume_24h,
volume_7d,
volume_30d,
liquidity_usd,
txns_24h,
created_at,
fdv
sort_dir
enum<string>

Sort direction (ascending or descending).

Available options:
asc,
desc

Response

Successful operation

The paginated response containing tokens that match the search criteria.

results
object[]

An array of token search results.

page_info
object

Pagination details for the current response.