Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | URL pattern to match against intercepted requests |
extract_data_model | object | Yes | Data model schema for extracting specific fields using JSONPath |
selector | string | No | XPath expression to wait for before extracting network data |
wait_time | number | No | Maximum time (ms) to wait for the selector to appear. Only used when selector is set. Default: 15000 |
URL Matching
The node supports three matching modes:Exact Match
If the URL exactly matches a request URL, it’s returned.Substring Match
If no exact match is found, the node falls back to substring matching.With Regex URL Matching
Extract specific fields using regex to match dynamic URLs:$— root object$.field— direct field access$.parent.child— nested field$[0]— first array element$..field— recursive search for field
Wait for Element First
Wait for a specific element to appear before extracting network data:Notes
- The node automatically trims whitespace from URL patterns
- When multiple requests match, the most recent match is used for extraction
- Only
fetchandXMLHttpRequestrequests with JSON responses are captured

