cURL
curl --request GET \ --url https://api.bctrl.ai/v1/profiles \ --header 'Authorization: Bearer <token>'
{ "profiles": [ { "id": "<string>", "name": "<string>", "status": "<string>" } ] }
List all browser profiles
import { Bctrl } from '@bctrl/sdk'; const bctrl = new Bctrl({ apiKey: process.env.BCTRL_API_KEY! }); const result = await bctrl.profiles.list();
Show profiles