GET
/
v1
/
token
/
search
Token - Search
curl --request GET \
  --url https://api-dex.chainstream.io/v1/token/search \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    "<string>"
  ],
  "hasNext": false,
  "hasPrev": false,
  "startCursor": "<string>",
  "endCursor": "<string>",
  "total": 123,
  "countsByProtocols": {
    "uniswap": 500,
    "sushiswap": 300
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

chains
string[]

Chain filter

q
string

Search query string for token name, symbol or address

Minimum length: 1
Example:

"USDC"

limit
number
default:20

Number of results per page

Required range: 1 <= x <= 100
sort
enum<string>
default:desc

Sort direction

Available options:
asc,
desc
protocols
string[]

Protocol filter, for supported protocols please check the dexName values returned by DEX - List

cursor
string

Pagination cursor

sortBy
enum<string>

Field to sort by

Available options:
marketCapInUsd,
liquidityInUsd,
priceInUsd,
holderCount,
h24VolumeInUsd,
h24Transactions,
tokenCreatedAt
Example:

"priceInUsd"

Response

200 - application/json

The response is of type object.