cURL
curl --request DELETE \ --url https://api.bctrl.ai/v1/profiles/{id} \ --header 'Authorization: Bearer <token>'
Delete a browser profile and all its stored data
import { Bctrl } from '@bctrl/sdk'; const bctrl = new Bctrl({ apiKey: process.env.BCTRL_API_KEY! }); // Named-browser API await bctrl.browser('my-browser').delete(); // Raw profiles API await bctrl.profiles.delete('prof_abc123');