Loading...
Build, deploy, and monitor AI agents with the FuseIQ SDK. Choose your language and start in seconds.
Install the SDK for your preferred language.
Requires Python 3.9+
Requires Node.js 18+
Deploy and manage your agents from the terminal with fuseiq-cli.
# Install pip install fuseiq-cli # Deploy an agent fuseiq deploy my_agent.py # Check status fuseiq status # View logs fuseiq logs my_agent
Get started with just three lines of Python:
from fuseiq_agent import Agent, log_step agent = Agent(name="my-agent") log_step(agent, "Hello, FuseIQ!")
Open-source developer tools (MIT). The hosted platform is proprietary — star and contribute on GitHub; run production on fuseiq.io.
fuseiq-agent-sdk
Python SDK & Node SDK source
fuseiq-templates
Example agents & starter templates
fuseiq-cli
CLI tool for deploying & managing agents
Platform Documentation
Help Center, API reference & guides
Create an API key in Settings → API Keys, then call endpoints with the x-api-key header.
GET /api/v1/status
Workspace plan, agent count (API key required)
POST /api/external/heartbeat
Register external agent heartbeat (API key + session)
GET /api/workflows/shared/[id]
Public read of a shared workflow link (no auth)
GET /api/health
Platform health check (public)
curl https://fuseiq.io/api/v1/status \ -H "x-api-key: sk_fuseiq_YOUR_KEY"
For the complete API reference, guides, tutorials, and best practices, visit the Help Center.
Browse all SDK docs in the Help Center