const client = new Kernel({ apiKey: 'My API Key', });
const profile = await client.profiles.create();
console.log(profile.id);
```python Python
from kernel import Kernel
client = Kernel(
api_key="My API Key",
)
profile = client.profiles.create()
print(profile.id)