Skip to main content
POST
/
v1beta
/
tasks
/
{id}
/
start-manual-session
JavaScript
import Indices from 'indicesio';

const client = new Indices({
  apiKey: process.env['INDICES_API_KEY'], // This is the default and can be omitted
});

const response = await client.tasks.startManualSession('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');

console.log(response.session_id);
{
  "session_id": "<string>",
  "iframe_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.indices.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your API key as the bearer token. Set header: Authorization to Bearer <api_key>

Path Parameters

id
string<uuid>
required

The ID of the task to perform manually.

Body

application/json
use_proxy
boolean
default:false

If true, spawn the browser session using a proxy.

cookies
SessionCookie · object[]

Initial cookies to set in the browser session.

Response

Successful response

session_id
string
required

Opaque identifier for the spawned browser session.

iframe_url
string
required

URL to embed in an iframe to control the browser.