fetch API. Parameters are split by a delimiter and each variant is fetched concurrently.
Command Type
Command Type ID: 26Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| url | string | The URL of the web request (may contain httpParams placeholder) | Yes |
| httpParams | string | Parameters split by delimiter and injected into URL/body/headers in parallel | Yes |
| timeout | number | Timeout in milliseconds | Yes |
| body | object or string | Request body for POST/PUT | No |
| delimiter | string | Delimiter for splitting httpParams (default: ";") | No |
| excludeFailed | boolean | Exclude failed requests from results (default: false) | No |
| headers | object or Array | Headers | No |
| isJson | boolean | Parse responses as JSON (default: true) | No |
| method | string | HTTP method. Defaults to "GET" | No |
Usage Examples
Parallel Fetch for Multiple IDs
Parallel POST Requests
Related Commands
- Fetch Web Request - Single fetch request
- HTTP Parallel Request - Parallel HTTP without browser context