Introduction
Blockchain API for AI
If you want standard HTTP access instead of MCP, use the Hive REST API.
Base URL
https://mcp.hiveintelligence.xyz/api/v1
What REST Gives You
GET /toolsfor the full live wrapped catalogPOST /executefor direct tool execution- the same live server surface that backs the MCP endpoints
Example
curl -X POST https://mcp.hiveintelligence.xyz/api/v1/execute \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_HIVE_API_KEY" \
-d '{
"tool": "get_price",
"args": {
"ids": "bitcoin,ethereum",
"vs_currencies": "usd"
}
}'
Discovery
curl -X GET "https://mcp.hiveintelligence.xyz/api/v1/tools?search=wallet&limit=10" \
-H "x-api-key: YOUR_HIVE_API_KEY"