Endpoint Examples
Creating Workflow
POST
/
api
/
workflow
/
create
Copy
curl --request POST \
--url https://app.scrapeautomate.com/api/workflow/create \
--header 'Content-Type: application/json' \
--data '{
"config": {
"window_height": 1340,
"window_width": 1910,
"screenshot": true,
"screenshot_full_page": true,
"instructions": [
{
"wait": "<string>",
"fill": {
"selector": "<string>",
"text": "<string>",
"delay": 0
},
"click": "<string>",
"delay": 2
}
],
"url": "<string>",
"render": false,
"block_resources": "<string>",
"webhook_url": "<string>"
},
"name": "<string>"
}'
Copy
curl --request POST \
--url https://app.scrapeautomate.com/api/workflow/create \
--header 'Content-Type: application/json' \
--data '{
"config": {
"window_height": 1340,
"window_width": 1910,
"screenshot": true,
"screenshot_full_page": true,
"instructions": [
{
"wait": "<string>",
"fill": {
"selector": "<string>",
"text": "<string>",
"delay": 0
},
"click": "<string>",
"delay": 2
}
],
"url": "<string>",
"render": false,
"block_resources": "<string>",
"webhook_url": "<string>"
},
"name": "<string>"
}'
Assistant
Responses are generated using AI and may contain mistakes.