Skip to main content
GET
/
token
/
{network}
/
{address}
/
price
Get token price
curl --request GET \
  --url https://solana-gateway.moralis.io/token/{network}/{address}/price \
  --header 'X-Api-Key: <api-key>'
{
  "tokenAddress": "<string>",
  "pairAddress": "<string>",
  "nativePrice": {
    "value": "<string>",
    "decimals": 123,
    "name": "<string>",
    "symbol": "<string>"
  },
  "usdPrice": 123,
  "exchangeAddress": "<string>",
  "exchangeName": "<string>",
  "logo": "<string>",
  "name": "<string>",
  "symbol": "<string>",
  "score": 123,
  "usdPrice24h": 123,
  "usdPrice24hrUsdChange": 123,
  "usdPrice24hrPercentChange": 123,
  "isVerifiedContract": true
}
Endpoint cost: CUs. Learn more about compute units.

Authorizations

X-Api-Key
string
header
required

Path Parameters

network
enum<string>
required

The network to query

Available options:
mainnet,
devnet
address
string
required

The address to query

Example:

"So11111111111111111111111111111111111111112"

Response