const client = new Kernel({ apiKey: 'My API Key', });
await client.browsers.deleteByID('htzv5orfit78e1m2biiifpbv');
```python Python
from kernel import Kernel
client = Kernel(
api_key="My API Key",
)
client.browsers.delete_by_id(
"htzv5orfit78e1m2biiifpbv",
)