get_asset_info
Retrieve detailed asset information using the asset's trading symbol with the Model Context Protocol on Bitpanda Server. Input the symbol to access key data in a structured format.
Instructions
Retrieves detailed information for a specific asset by its symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | The trading symbol of the asset (e.g., BTC, XAU) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "The trading symbol of the asset (e.g., BTC, XAU)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}