solana_getmultipletokenprices
Retrieve USD and native token prices for multiple Solana contract addresses on specified networks using the Moralis MCP Server.
Instructions
Gets the token price (usd and native) for a given contract address and network.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | Yes | The network to query | |
requestBody | Yes | The JSON request body. |
Input Schema (JSON Schema)
{
"properties": {
"network": {
"description": "The network to query",
"enum": [
"mainnet",
"devnet"
],
"type": "string"
},
"requestBody": {
"description": "The JSON request body.",
"properties": {
"addresses": {
"items": {
"type": "string"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
}
},
"required": [
"addresses"
],
"type": "object"
}
},
"required": [
"network",
"requestBody"
],
"type": "object"
}