get_etf_price
Retrieve current buy and sell prices for ETF tokens across multiple blockchain networks including Ethereum, Arbitrum, and Polygon.
Instructions
Get buy and sell prices for an ETF token.
Args:
chain_id: Chain ID (1, 10, 56, 100, 137, 8453, 42161)
etf_token_address: Address of the ETF token
Returns:
JSON string with buy and sell prices for the ETF token.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain_id | Yes | ||
| etf_token_address | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chain_id": {
"title": "Chain Id",
"type": "string"
},
"etf_token_address": {
"title": "Etf Token Address",
"type": "string"
}
},
"required": [
"chain_id",
"etf_token_address"
],
"type": "object"
}