Access and manage token data on the Solana blockchain.
Get current token prices
| Name | Type | Required | Description |
|---|---|---|---|
| mint | string | Optional | Specific token mint address |
| symbol | string | Optional | Token symbol (e.g., SOL, USDC) |
{
"success": true,
"data": [
{
"mint": "So11111111111111111111111111111111111111112",
"symbol": "SOL",
"price": 34.56,
"change24h": 2.5
}
]
}Get token metadata
| Name | Type | Required | Description |
|---|---|---|---|
| mint | string | Required | Token mint address |
{
"success": true,
"data": {
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6,
"logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png",
"tags": ["stablecoin"]
}
}Get token transactions
| Name | Type | Required | Description |
|---|---|---|---|
| mint | string | Required | Token mint address |
| limit | number | Optional | Number of transactions to return (default: 10, max: 100) |
| before | string | Optional | Transaction signature to fetch transactions before |
{
"success": true,
"data": [
{
"signature": "5KtPn1LGuxhgEHEAGRQ7wPgVbsGqTdaZLJvpHPBH4LUxkjQZqB6fQgFr7kkz9KzHQxupARnABXkYYP5zVvTQnYCe",
"blockTime": 1634567890,
"amount": 100.5,
"sender": "7UX2i7SucgLMQcfZ75s3VXmZZY4YRUyJN9X1RgfMoDUi",
"recipient": "2qXKEbUeNYwWUYmPRSZJKQP4DjVWvDTxjwUP1pFi4VGY",
"type": "transfer"
}
]
}