Universal
universal
universalParameter
Type
Required
Description
curl -X POST 'https://scraping.production.goproxies.com/api/v1/scrapes' \
-H 'X-Api-Key: <your-api-key>' \
-H 'Content-Type: application/json' \
-d '{
"universal": {
"url": "https://www.day.lt",
"parse": true
}
}'const response = await fetch("https://scraping.production.goproxies.com/api/v1/scrapes", {
method: "POST",
headers: {
"X-Api-Key": "<your-api-key>",
"Content-Type": "application/json",
},
body: JSON.stringify({
universal: {
url: "https://www.day.lt",
parse: true,
},
}),
});
const data = await response.json();
console.log(data);Last updated
Was this helpful?

