Command Type
Command Type ID: 1004Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| url | string | The target URL (may contain httpParams placeholder) | Yes |
| verb | string | HTTP method: "GET", "POST", "PUT", "DELETE", "PATCH" | Yes |
| contentType | string | Payload type: "JSON" or "form-data" | Yes |
| timeout | number | Timeout in milliseconds | Yes |
| body | object | Request body for POST/PUT | No |
| bypassStatusCode | Array of number | Status codes to bypass default error handling | No |
| delimiter | string | Delimiter for splitting httpParams (default: ";") | No |
| excludeFailed | boolean | Exclude failed requests from results (default: false) | No |
| headers | object | HTTP headers | No |
| httpParams | string | Parameters to split and inject into URL/body/headers for parallel execution | No |
| isHttp2 | boolean | Enable HTTP/2 | No |
| isJson | boolean | Parse responses as JSON (default: false) | No |
| proxy | ProxySettings | Proxy settings | No |
| proxyConnectionTimeout | number | Timeout for proxy connection in milliseconds | No |
| urlParams | string | Deprecated — use httpParams instead | No |
Usage Examples
Parallel GET Requests
Related Commands
- HTTP Request - Got - Single Got request
- HTTP Parallel Request - cloudscraper parallel requests