Quick Start Guide
Get started with Hive Intelligence in under 5 minutes.
Option 1: Claude Desktop (MCP)
Setup
- Open Claude Desktop settings
- Navigate to Settings → MCP Servers
- Add the Hive Intelligence server:
{
"mcpServers": {
"hive-intelligence": {
"url": "https://www.hiveintelligence.xyz/mcp"
}
}
}
- Restart Claude Desktop
Try It
Ask Claude:
- "What's the current price of Bitcoin?"
- "Show me the top 10 DeFi protocols by TVL"
- "Check if this token is safe: 0x..."
- "What are the trending cryptocurrencies today?"
Option 2: REST API
Endpoint
POST https://api.hiveintelligence.xyz/api/execute
Request Format
{
"toolName": "get_price",
"arguments": {
"ids": "bitcoin",
"vs_currencies": "usd"
}
}
cURL Example
curl -X POST https://api.hiveintelligence.xyz/api/execute \
-H "Content-Type: application/json" \
-d '{"toolName": "get_price", "arguments": {"ids": "bitcoin", "vs_currencies": "usd"}}'
Response
Returns tool data directly:
{
"bitcoin": {
"usd": 67234.00
}
}
Option 3: Python
import requests
API_URL = "https://api.hiveintelligence.xyz/api/execute"
# Get Bitcoin price
response = requests.post(API_URL, json={
"toolName": "get_price",
"arguments": {"ids": "bitcoin", "vs_currencies": "usd"}
})
price = response.json()
print(f"Bitcoin: ${price['bitcoin']['usd']}")
Option 4: JavaScript
const API_URL = "https://api.hiveintelligence.xyz/api/execute";
const response = await fetch(API_URL, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
toolName: "get_price",
arguments: { ids: "bitcoin", vs_currencies: "usd" }
})
});
const price = await response.json();
console.log(`Bitcoin: $${price.bitcoin.usd}`);
Common Tools
| Tool | Description | Example |
|---|---|---|
get_price | Get cryptocurrency prices | {"ids": "bitcoin", "vs_currencies": "usd"} |
get_coins_market_data | Market data with rankings | {"vs_currency": "usd", "per_page": 10} |
get_token_security | Security analysis | {"contract_addresses": "0x...", "chain_id": "1"} |
get_protocols | DeFi protocol list | {} |
get_trending | Trending coins | {} |
get_wallet_balance | Wallet balances | {"address": "0x..."} |
Rate Limits
| Tier | Requests/Minute |
|---|---|
| Free | 30 |
Next Steps
- Tools Reference - Complete tool documentation
- API Documentation - REST API details
- Integration Libraries - Language-specific guides
- Data Sources - Where data comes from