OpenBrowse
v3 API referencev3/profiles/profile_id

Get Profile

Fetch a single profile by id. Returns 404 if no profile has that id.

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

curl -X GET "https://your-host/v3/profiles/{profile_id}" \
  -H "Authorization: Bearer $OPENBROWSE_API_KEY"
GET
/v3/profiles/{profile_id}

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Path Parameters

profile_id*Profile Id

Header Parameters

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

Response Body

application/json

application/json

curl -X GET "https://example.com/v3/profiles/string"
{  "id": "string",  "userId": "string",  "name": "string",  "lastUsedAt": "string",  "createdAt": "string",  "updatedAt": "string",  "cookieDomains": [    "string"  ]}