Skip to main content
GET
/
api
/
sol
/
tokens
/
search
Search tokens by name/symbol, creator, or update authority
curl --request GET \
  --url 'https://api.raze.bot/api/sol/tokens/search?apiKey='
{
  "success": true,
  "data": [
    {}
  ],
  "count": 123,
  "query": "<string>",
  "sol_price": 123
}

Authorizations

apiKey
string
query
required

Query Parameters

q
string

Case-insensitive substring match against name or symbol. Optional when creator or authority is supplied.

Minimum string length: 2
creator
string

Filter to mints whose Metaplex creators[] includes this address.

authority
string

Filter to mints whose Metaplex update_authority matches.

limit
integer
default:20

Maximum number of results to return.

Required range: 1 <= x <= 1000
page
integer
default:1

1-indexed page (creator/authority paths only).

Required range: x >= 1

Response

Success

success
boolean
data
object[]
count
integer
query
string
sol_price
number | null