Skip to main content
GET
https://api.usedari.com
/
public
/
browser-profiles
from dari import Dari

client = Dari(api_key="YOUR_API_KEY")

# List all browser profiles
profiles = client.list_browser_profiles()

for profile in profiles['profiles']:
    print(f"{profile['name']}: {profile['id']}")
{
  "profiles": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "linkedin-profile",
      "created_at": "2025-11-30T12:00:00Z"
    },
    {
      "id": "660e8400-e29b-41d4-a716-446655440111",
      "name": "twitter-profile",
      "created_at": "2025-11-29T10:30:00Z"
    }
  ]
}
Get a list of all browser profiles that have been created in your workspace.

Headers

X-API-Key
string
required
Your API key for authentication

Response Fields

profiles
array
Array of browser profile objects
from dari import Dari

client = Dari(api_key="YOUR_API_KEY")

# List all browser profiles
profiles = client.list_browser_profiles()

for profile in profiles['profiles']:
    print(f"{profile['name']}: {profile['id']}")
{
  "profiles": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "linkedin-profile",
      "created_at": "2025-11-30T12:00:00Z"
    },
    {
      "id": "660e8400-e29b-41d4-a716-446655440111",
      "name": "twitter-profile",
      "created_at": "2025-11-29T10:30:00Z"
    }
  ]
}

Usage Notes

  • Returns all browser profiles in your workspace
  • Use the profile id to create sessions or run workflows with specific profiles
  • Profiles are sorted by creation date

Error Responses

{
  "detail": "Invalid API key"
}