Skip to main content
GET
/
v1
/
profiles
/
{id}
/
status
Profile Status
curl --request GET \
  --url https://api.bctrl.ai/v1/profiles/{id}/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "currentDriver": "<string>",
  "hasProxy": true,
  "humanize": true
}
id
string
required
Profile ID.

Examples

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');

Response

status
string
required
Lifecycle status.
currentDriver
string
Currently connected driver.
hasProxy
boolean
Whether a proxy is configured.
humanize
boolean
Whether humanization is enabled.