getCoin
Retrieve comprehensive metadata for any cryptocurrency, including name, symbol, total supply, image, and pools, by providing its coin symbol. Designed for cryptocurrency research and Ethereum automation.
Instructions
Given a coin symbol, fetch the metadata about a coin (name, symbol, total supply, image, pools).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}