cryptoCategory
Retrieve detailed data on a specific cryptocurrency category from CoinMarketCap, including market insights and metrics, using the required category ID.
Instructions
Returns information about a single coin category on CoinMarketCap.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
convert | No | ||
convert_id | No | ||
id | Yes | ||
limit | No | ||
start | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"convert": {
"type": "string"
},
"convert_id": {
"type": "string"
},
"id": {
"type": "string"
},
"limit": {
"type": "number"
},
"start": {
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}