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