fetch_quote
Retrieve real-time token prices using a specified slug for accurate market data on EVM chains.
Instructions
Get the price of a token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
slug | Yes |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"slug": {
"type": "string"
}
},
"required": [
"slug"
],
"type": "object"
}