Skip to main content
GET
https://agent.usedari.com
/
profiles
/
{org_id}
curl https://agent.usedari.com/profiles/my-org \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "org_id": "my-org",
    "name": "Gmail Login",
    "hyperbrowser_profile_id": "hp_abc123",
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-01-15T10:30:00Z"
  }
]
Returns all browser profiles for the specified organization. Profiles persist cookies and session state across jobs.

Path Parameters

org_id
string
required
Organization ID

Headers

X-API-Key
string
required
Organization API key

Response Fields

Returns an array of profile objects:
id
string
UUID of the profile
org_id
string
Organization ID
name
string
Profile name
hyperbrowser_profile_id
string
Hyperbrowser profile identifier
created_at
string
ISO 8601 creation timestamp
updated_at
string
ISO 8601 update timestamp
curl https://agent.usedari.com/profiles/my-org \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "org_id": "my-org",
    "name": "Gmail Login",
    "hyperbrowser_profile_id": "hp_abc123",
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-01-15T10:30:00Z"
  }
]