Executing HTTP Requests
http_request Function
The http_request
function allows developers to perform additional HTTP POST/GET requests during a page interaction, unlocking access to more data. By capturing these internal API calls, you can directly access key data in machine-readable formats like JSON, bypassing the need to parse HTML.
url
Required
URL | The target URL for the HTTP request
method
Optional (Default = GET
)
Enum | The HTTP request method -GET
, POST
headers
Optional
Object | Additional headers required for the request in JSON format
timeout
Optional
Integer | Controls the timeout if the internal HTTP request being performed in ms
Example request
Like all Page Interactions, infinite scrolling is capped by the global 120-second session timeout, and will be terminated if this limit is reached.
Last updated