Javascript
import Anchorbrowser from 'anchorbrowser'; const client = new Anchorbrowser({ apiKey: 'My API Key', }); const successResponse = await client.profiles.create({ name: 'my-profile' }); console.log(successResponse.data);
{ "data": { "status": "success" } }
Creates a new profile from a browser session. A Profile stores cookies, local storage, and cache.
API key passed in the header
Profile created successfully.
The response is of type object.
object