Tools Reference
Search & Discovery Tools
Search & Discovery Tools
9 tools for token discovery, search, trending analysis, and category data.
MCP Endpoint: POST /hive_search_discovery/mcp
Data Source: CoinGecko
Search Tools
search_all
Search for coins, NFTs, exchanges, and categories.
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query (name, symbol, or address) |
Example:
curl -X POST https://api.hiveintelligence.xyz/api/execute \
-H "Content-Type: application/json" \
-d '{
"toolName": "search_all",
"arguments": {
"query": "bitcoin"
}
}'
Response includes:
- Coins matching the query
- NFT collections
- Exchanges
- Categories
Trending & Discovery
get_trending
Get trending coins, NFTs, and categories based on search activity.
| Parameter | Type | Required | Description |
|---|---|---|---|
| (none) | - | - | No parameters required |
Example:
curl -X POST https://api.hiveintelligence.xyz/api/execute \
-H "Content-Type: application/json" \
-d '{
"toolName": "get_trending",
"arguments": {}
}'
Response:
{
"coins": [
{
"item": {
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"market_cap_rank": 1,
"score": 0
}
}
],
"nfts": [...],
"categories": [...]
}
get_new_coins
Get recently added coins to CoinGecko.
| Parameter | Type | Required | Description |
|---|---|---|---|
| (none) | - | - | No parameters required |
Response includes:
- Coin ID and name
- Symbol
- Listing date
- Market cap rank
Category Tools
get_categories
Get list of all cryptocurrency categories.
| Parameter | Type | Required | Description |
|---|---|---|---|
| (none) | - | - | No parameters required |
Categories include:
- Layer 1
- Layer 2
- DeFi
- NFT
- Gaming
- Meme
- AI
- RWA (Real World Assets)
- Stablecoins
get_categories_market_data
Get categories with market data including market cap and volume.
| Parameter | Type | Required | Description |
|---|---|---|---|
| order | string | No | Sort by: market_cap_desc, market_cap_asc, name_desc, name_asc, market_cap_change_24h_desc, market_cap_change_24h_asc |
Example:
curl -X POST https://api.hiveintelligence.xyz/api/execute \
-H "Content-Type: application/json" \
-d '{
"toolName": "get_categories_market_data",
"arguments": {
"order": "market_cap_desc"
}
}'
Response:
[
{
"id": "layer-1",
"name": "Layer 1 (L1)",
"market_cap": 2500000000000,
"market_cap_change_24h": 2.5,
"volume_24h": 85000000000,
"top_3_coins": ["bitcoin", "ethereum", "solana"]
}
]
Coin List Tools
get_coins_list
Get list of all supported coins with ID, symbol, and name.
| Parameter | Type | Required | Description |
|---|---|---|---|
| include_platform | boolean | No | Include platform contract addresses |
Example:
curl -X POST https://api.hiveintelligence.xyz/api/execute \
-H "Content-Type: application/json" \
-d '{
"toolName": "get_coins_list",
"arguments": {
"include_platform": true
}
}'
Exchange List Tools
get_exchanges_list
Get list of all supported exchanges.
| Parameter | Type | Required | Description |
|---|---|---|---|
| (none) | - | - | No parameters required |
Response includes:
- Exchange ID and name
- Year established
- Country
- Trust score
get_derivatives_exchanges_list
Get list of all derivatives exchanges.
| Parameter | Type | Required | Description |
|---|---|---|---|
| (none) | - | - | No parameters required |
Event Tools
get_event_labels
Get list of event labels for categorizing crypto events.
| Parameter | Type | Required | Description |
|---|---|---|---|
| (none) | - | - | No parameters required |
Quick Reference
| Tool | Description |
|---|---|
| search_all | Search coins, NFTs, exchanges |
| get_trending | Trending coins and NFTs |
| get_new_coins | Recently added coins |
| get_categories | All category names |
| get_categories_market_data | Categories with market data |
| get_coins_list | All supported coins |
| get_exchanges_list | All exchanges |
| get_derivatives_exchanges_list | Derivatives exchanges |
| get_event_labels | Event categorization labels |