Back to all steps

Grab full page content

Step fields
webhook endpoint (webhook)
Grab all visible text from the page and send it to a webhook.
The endpoint is picked from your webhooks (Profile → API tokens → Webhooks) - the address is no longer typed into the step. The server sends it: the request is signed, retried if the endpoint is down, and every delivery shows up in the webhook log. The step never fails the test.
Usage example

Collect all visible text of the page and send a POST to your URL.

Example: https://myapi.com/page-content

POST request: all text arrives in the html field.

Receiving example (PHP): $_POST["html"]