Using a Free Proxy
This example shows how to make a request with or without a browser using a random free anonymous proxy available on the internet.
By default, no proxy is used which can quickly result in the ScrAPI server IP address being banned. You can use a proxy which provides IP rotation to avoid this.
To use a random free anonymous proxy, simply set the proxyType
parameter to Free
.
Note that these free proxies are generally slow and unreliable and should not be used for important production workloads.
Example Request
GET https://api.scrapi.tech/v1/scrape?url=https://deventerprise.com&proxyType=Free
POST https://api.scrapi.tech/v1/scrape
{
"url": "https://deventerprise.com",
"useBrowser": false,
"proxyType": "Free"
}
Testing
If you want to test this request or a variation of it, head to the Playground or the OpenAPI page.