cURL
curl --request GET \ --url https://api.bctrl.ai/v1/profiles/{id}/status \ --header 'Authorization: Bearer <token>'
{ "status": "<string>", "currentDriver": "<string>", "hasProxy": true, "humanize": true }
Get the lifecycle status of a browser profile
import { Bctrl } from '@bctrl/sdk'; const bctrl = new Bctrl({ apiKey: process.env.BCTRL_API_KEY! }); // Named-browser API const info = await bctrl.browser('my-browser').status(); // Raw profiles API const status = await bctrl.profiles.status('prof_abc123');