GET
/
agent-profiles
JavaScript
import BrowserUse from 'browser-use-sdk';

const client = new BrowserUse({
  apiKey: 'My API Key',
});

const agentProfiles = await client.agentProfiles.list();

console.log(agentProfiles.items);
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "description": "<string>",
      "highlightElements": true,
      "maxAgentSteps": 123,
      "allowedDomains": [
        "<string>"
      ],
      "flashMode": true,
      "thinking": true,
      "vision": true,
      "customSystemPromptExtension": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "totalItems": 123,
  "pageNumber": 123,
  "pageSize": 123
}

Authorizations

X-Browser-Use-API-Key
string
header
required

Query Parameters

pageSize
integer
default:10
Required range: 1 <= x <= 100
pageNumber
integer
default:1
Required range: x >= 1

Response

200
application/json

Successful Response

Response model for paginated agent profile list requests

Attributes: items: List of agent profile views for the current page