Skip to main content

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

Smooth has both a Python and a Typescript SDK. The Typescript SDK is automatically generate from the Python SDK and provides the same interface.
pip install smooth-py
To directly interface with the APIs, refer to the API documentation

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.