Skip to main content
The HTTP Parallel Request command (Command Type: 1002) executes multiple HTTP requests in parallel using the cloudscraper Python library. Parameters are split by a delimiter and run concurrently.

Command Type

Command Type ID: 1002

Parameters

ParameterTypeDescriptionRequired
urlstringThe target URL for the request (may contain httpParams placeholder)Yes
verbstringHTTP method: "GET", "POST", "PUT", "DELETE", "PATCH"Yes
contentTypestringPayload type: "JSON" or "form-data"Yes
timeoutnumberTimeout for the command in millisecondsYes
bodyobjectRequest body for POST/PUT requestsNo
bypassStatusCodeArray of numberStatus codes to bypass default error handlingNo
delimiterstringDelimiter for splitting httpParams (default: ";")No
headersobjectHTTP headersNo
httpParamsstringParameters to split and run in parallel (injected into URL/body/headers)No
isJsonbooleanParse responses as JSON (default: true)No
proxyProxySettingsProxy settingsNo
urlParamsstringDeprecated — use httpParams insteadNo

Usage Examples

Parallel Requests with URL Params

{
  "command": "http-parallel-request",
  "params": {
    "url": "https://api.example.com/data?id=#{httpParams}",
    "verb": "GET",
    "contentType": "JSON",
    "timeout": 30000,
    "httpParams": "123;456;789",
    "delimiter": ";"
  }
}