Skip to main content

List all browser profiles using the Python SDK

List all your existing browser profiles.
from smooth import SmoothClient

smooth_client = SmoothClient(api_key="cmzr-YOUR_API_KEY")
response = smooth_client.list_profiles()

print(f"Profile IDs: {response.profile_ids}")
If Python is not your language of choice, check out our API Reference.

Response

Returns a BrowserProfilesResponse with the following attributes.
profile_ids
list[str]
A list of all the profile IDs.

Delete a browser profile

Delete an existing browser profile and its associated data, such as cookies and authentication details.
from smooth import SmoothClient

smooth_client = SmoothClient(api_key="cmzr-YOUR_API_KEY")
smooth_client.delete_profile(profile_id="my-profile-id")
I