Skip to main content

Hive REST API

The Hive REST API provides programmatic access to multi-agent orchestration features. Manage agents, assign tasks, and query memory systems.

Base URL

http://localhost:8001/api/v1

Quick Start

# Start Hive with API enabled
hive start --api --port 8001

# API available at http://localhost:8001/api/v1
# Swagger docs at http://localhost:8001/docs

Core Endpoints


Authentication

  • API Key
  • Bearer Token
curl -X GET http://localhost:8001/api/v1/agents \
  -H "X-API-Key: your-api-key"

Interactive Documentation

# Start Hive
hive start --api

# Open Swagger UI
open http://localhost:8001/docs

Next Steps