Javascript
import Anchorbrowser from 'anchorbrowser'; const client = new Anchorbrowser({ apiKey: 'My API Key', }); const session = await client.sessions.create(); console.log(session.data);
{ "data": { "id": "<string>", "cdp_url": "<string>", "live_view_url": "<string>" } }
Allocates a new browser session for the user, with optional configurations for ad-blocking, captcha solving, proxy usage, and idle timeout.
API key passed in the header
Successfully returned a browser object
The response is of type object.
object