Skip to main content
POST
/
api
/
sol
/
tokens
/
batch-enrich
Batch-enrich a set of mints
curl --request POST \
  --url 'https://api.raze.bot/api/sol/tokens/batch-enrich?apiKey=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "mints": [
    "<string>"
  ],
  "sparkline_limit": 0
}
'
{
  "success": true,
  "count": 123,
  "data": {},
  "error": "<string>"
}

Authorizations

apiKey
string
query
required

Body

application/json
mints
string[]
required

Mints to enrich (1..80). Entries under 32 chars are dropped; duplicates deduped.

Required array length: 1 - 80 elements
sparkline_limit
integer
default:0

When > 0, include a sparkline array of up to this many points per mint.

Required range: 0 <= x <= 120

Response

Success. On empty / all-invalid input or when more than 80 mints are supplied, returns HTTP 200 with { success: false, error } instead.

success
boolean
count
integer
data
object

Map keyed by mint; each value is the merged enrichment object.

error
string

Present only on failure responses (empty/all-invalid input or > 80 mints).