Skip to main content
GET
/
search
search
curl --request GET \
  --url https://lite-api.jup.ag/ultra/v1/search
[
  {
    "id": "<string>",
    "name": "<string>",
    "symbol": "<string>",
    "icon": "<string>",
    "decimals": 123,
    "twitter": "<string>",
    "telegram": "<string>",
    "website": "<string>",
    "dev": "<string>",
    "circSupply": 123,
    "totalSupply": 123,
    "tokenProgram": "<string>",
    "launchpad": "<string>",
    "partnerConfig": "<string>",
    "graduatedPool": "<string>",
    "graduatedAt": "<string>",
    "holderCount": 123,
    "fdv": 123,
    "mcap": 123,
    "usdPrice": 123,
    "priceBlockId": 123,
    "liquidity": 123,
    "stats5m": {
      "priceChange": 123,
      "holderChange": 123,
      "liquidityChange": 123,
      "volumeChange": 123,
      "buyVolume": 123,
      "sellVolume": 123,
      "buyOrganicVolume": 123,
      "sellOrganicVolume": 123,
      "numBuys": 123,
      "numSells": 123,
      "numTraders": 123,
      "numOrganicBuyers": 123,
      "numNetBuyers": 123
    },
    "stats1h": {
      "priceChange": 123,
      "holderChange": 123,
      "liquidityChange": 123,
      "volumeChange": 123,
      "buyVolume": 123,
      "sellVolume": 123,
      "buyOrganicVolume": 123,
      "sellOrganicVolume": 123,
      "numBuys": 123,
      "numSells": 123,
      "numTraders": 123,
      "numOrganicBuyers": 123,
      "numNetBuyers": 123
    },
    "stats6h": {
      "priceChange": 123,
      "holderChange": 123,
      "liquidityChange": 123,
      "volumeChange": 123,
      "buyVolume": 123,
      "sellVolume": 123,
      "buyOrganicVolume": 123,
      "sellOrganicVolume": 123,
      "numBuys": 123,
      "numSells": 123,
      "numTraders": 123,
      "numOrganicBuyers": 123,
      "numNetBuyers": 123
    },
    "stats24h": {
      "priceChange": 123,
      "holderChange": 123,
      "liquidityChange": 123,
      "volumeChange": 123,
      "buyVolume": 123,
      "sellVolume": 123,
      "buyOrganicVolume": 123,
      "sellOrganicVolume": 123,
      "numBuys": 123,
      "numSells": 123,
      "numTraders": 123,
      "numOrganicBuyers": 123,
      "numNetBuyers": 123
    },
    "firstPool": {
      "id": "<string>",
      "createdAt": "<string>"
    },
    "audit": {
      "isSus": true,
      "mintAuthorityDisabled": true,
      "freezeAuthorityDisabled": true,
      "topHoldersPercentage": 123,
      "devBalancePercentage": 123,
      "devMigrations": 123
    },
    "organicScore": 123,
    "organicScoreLabel": "high",
    "isVerified": true,
    "cexes": [
      "<string>"
    ],
    "tags": [
      "<string>"
    ],
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Query Parameters

query
string
required
  • Search for a token and its information by its symbol, name or mint address
  • Comma-separate to search for multiple
  • Limit to 100 mint addresses in query
  • Default to 20 mints in response when searching via symbol or name

Response

Successful response

id
string

The token's mint address

name
string
symbol
string
icon
string | null
decimals
number
twitter
string | null
telegram
string | null
website
string | null
dev
string | null

The token's developer address

circSupply
number | null
totalSupply
number | null
tokenProgram
string

The token program address

launchpad
string | null
partnerConfig
string | null
graduatedPool
string | null
graduatedAt
string | null
holderCount
number | null
fdv
number | null
mcap
number | null
usdPrice
number | null
priceBlockId
number | null
liquidity
number | null
stats5m
object
stats1h
object
stats6h
object
stats24h
object
firstPool
object | null
audit
object | null
organicScore
number
organicScoreLabel
enum<string>
Available options:
high,
medium,
low
isVerified
boolean | null
cexes
string[] | null
tags
string[] | null
updatedAt
string<date-time>
I