solana • spl metadata
splTokens
A fast, free API for Solana token metadata. Ship live search, auto-complete, and token pages without juggling RPC calls or keeping your own registry in sync.
Live
Realtime token listContinuously refreshed by Stria
Stria = live scripting pipelineNew tokens stream in automatically
Zero-config token metadata API
Point your frontend at our edge endpoint and get verified names, tickers, decimals, and logos back in <150ms.
Free foreverNo API keys10 req/secFull metadata payloadNo hidden limits
View APIRoll it into your stack in minutes.
Live token search
Type a name or ticker to see what your users will experience. Results are instant and metadata-rich.

Solana
SOL9 dp
USD Coin
USDC6 dp
Tether
USDT6 dp
BONK
BONK5 dp
Raydium
RAY6 dp
Jupiter
JUP6 dp
Orca
ORCA6 dp
Pyth Network
PYTH6 dpStria realtime ingest
This script is the same Stria stream handler keeping the live splTokens list up to date. Drop it into your pipeline and forward each update wherever you need.
import { onNewToken, Token } from "@stria/solana-core";
export function main(ctx: StriaContext) {
// Forward every live token update
// from Stria into your system.
onNewToken((token: Token) => {
ctx.http(
"POST {endpoint}/update-listings",
{ ...token },
);
});
}