Batch Sessions

Create Batch Sessions

Creates multiple browser sessions in a single batch operation. This endpoint allows you to create up to 5,000 browser sessions simultaneously with the same configuration.

The batch will be processed asynchronously, and you can monitor progress using the batch status endpoint.

post/v1/batch-sessions

Request body

countinteger required

Number of sessions to create in the batch (1-1000)

metadataobject

Optional batch-level metadata for identification and organization

Example request

{
  "configuration": {
    "integrations": [
      {
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "type": "1PASSWORD",
        "configuration": {
          "load_mode": "all"
        }
      }
    ]
  }
}

Response

Batch created successfully

Changes