Setting up

Get your free API key and start running tasks in minutes.

Get your free API key

Unlock your free welcome credits. No credit card required.

Install Smooth

Skip if not using the Python SDK
pip install smooth-py

Run a task

Submit a task in seconds
from smooth import SmoothClient

smooth_client = SmoothClient(api_key="cmzr-YOUR_API_KEY")
task = smooth_client.run("Go to google flights and find the cheapest flight from London to Paris today")

print(f"Live URL: {task.live_url()}")
print(f"Agent response: {task.result()}")

Next steps

That’s all it takes to start automating with Smooth! If you want to learn how to implement more complex workflows in Python, check out our examples. Or, dive deep into our API and read about the different parameters on our API Reference.
To play around with the API, check out our playground.