
Developer Resources
Docs
Everything you need to integrate, customize, and scale your agent fleet. Full API reference, SDKs, and step-by-step guides.
Start in 3 Lines
Submit a task and get results. It's that simple.
quickstart.py
from miteos import Client
client = Client(api_key="sk_...")
task = client.tasks.create(
prompt="Research competitor pricing and build a comparison dashboard",
agents=["browser", "code"]
)
# Stream real-time updates
for event in task.stream():
print(event.type, event.data)