Concept Mapping
The table below maps every major concept from each framework to its Swarms API equivalent.Agents
Workflows & Orchestration
Tasks & Prompts
Tools
Architecture Selection Guide
Once you know what you were building in your old framework, use this table to pick the right Swarms workflow:Universal Migration Checklist
Regardless of which framework you are migrating from, follow these steps:- Get your API key at swarms.world/platform/api-keys
- Set the environment variable:
export SWARMS_API_KEY="your-key" - Install the HTTP client of your choice (
requests,httpx,fetch,axios, etc.) - Map each agent in your old workflow to an
agentobject withagent_name,system_prompt, andmodel_name - Map the topology — sequential chain, parallel fan-out, or directed graph
- Replace
taskinputs — the top-leveltaskfield replaces allinvoke(),kickoff(), andinitiate_chat()calls - Remove local infrastructure — no more Python environments, LLM SDK imports, or API key plumbing per-library
Migration Guides
Choose your current framework:Quick Start After Migration
Every Swarms API call follows the same pattern regardless of workflow type:https://api.swarms.world. See the API Reference for all available endpoints.