OpenBrowse
v3 API referencev3/profiles

Create Profile

Create an empty profile, with no cookies and no per-origin storage yet. Fill it by importing a cookie jar, or by letting a session log in while using it.

Create Profile. Send this to your own instance, replacing your-host with the hostname it answers on.

curl -X POST "https://your-host/v3/profiles" \
  -H "Authorization: Bearer $OPENBROWSE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
POST
/v3/profiles

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Header Parameters

x-browser-use-api-key?string|null

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/v3/profiles" \  -H "Content-Type: application/json" \  -d '{}'
{  "id": "string",  "userId": "string",  "name": "string",  "lastUsedAt": "string",  "createdAt": "string",  "updatedAt": "string",  "cookieDomains": [    "string"  ]}