Skip to main content
GET
/
api
/
sol
/
tokens
/
migrating
Snapshot of tokens close to migrating
curl --request GET \
  --url 'https://api.raze.bot/api/sol/tokens/migrating?apiKey='
{
  "success": true,
  "data": [
    {
      "mint": "<string>",
      "signer": "<string>",
      "platform": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "uri": "<string>",
      "slot": 123,
      "image": "<string>",
      "creator_buy_sol": 123,
      "creator_buy_tokens": 123,
      "creator_buy_price": 123,
      "last_avg_price": 123,
      "deploy_time_ms": 123,
      "isMigrating": true
    }
  ],
  "count": 123,
  "total": 123,
  "totalLive": 123,
  "limit": 123,
  "offset": 123,
  "hasMore": true
}

Authorizations

apiKey
string
query
required

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 200
offset
integer
default:0

Number of records to skip for pagination

Required range: x >= 0
platform
string

Filter by platform(s). Supports comma-separated values (e.g., "Pumpfun,Meteora"). Filtering is applied in-memory against the snapshot.

Response

200 - application/json

Success

Snapshot of un-migrated tokens that traded above the price floor in the last 10 minutes, sorted by last_avg_price desc, capped at 100 entries. Served from history's in-memory cache, refreshed every ~5 seconds by a ClickHouse query. Poll this endpoint for live updates — there is no WebSocket event for this feed.

success
boolean
data
object[]
count
integer
total
integer

Total records matching the platform filter (before pagination).

totalLive
integer

Total records in the cached snapshot (across all platforms).

limit
integer
offset
integer
hasMore
boolean