Javascript
import Anchorbrowser from 'anchorbrowser'; const client = new Anchorbrowser({ apiKey: 'Your API Key', }); const response = await client.sessions.listPages('session_id'); console.log(response);
[ { "id": "<string>", "title": "<string>", "url": "<string>", "frontend_url": "<string>" } ]
Retrieves a list of pages associated with a specific browser session.
API key passed in the header
The ID of the session to retrieve pages for.
Session pages retrieved successfully.
The unique identifier of the page.
The title of the page.
The URL of the page.
The frontend URL for accessing the page.