Cloudflare v3 + Turnstile

vurezo

Newbie
Joined
Jan 14, 2014
Messages
14
Reaction score
2
I need a cheaper solution for solving Cloudflare v3 + Turnstile than BrightData's scraping browser. Please let me know!
 
Scrapeops are still my goto service for bypassing Cloudflare when I'm scraping, and should be cheaper than BrightData (pretty much everything is!)
https://scrapeops.io/docs/proxy-aggregator/advanced-functionality/anti-bot-bypass/https://scrapeops.io/web-scraping-playbook/how-to-bypass-cloudflare/#option-5-smart-proxy-with-cloudflare-built-in-bypass
import requests

payload = { 'api_key': 'xxx', 'url': 'xxx', 'premium' : 'true' }
r = requests.get('https://api.scraperapi.com/', params=payload)
print(r.text)

Request failed. You will not be charged for this request. Please make sure your url is correct and try the request again. If this continues to happen, please contact [email protected]. The domain may be protected, please try adding the premium=true OR ultra_premium=true parameter to your request.

Is it a limitation of the trial? I sent them an email already but I haven't gotten any replies yet.

EDIT: I'll try following the guide you sent me and see if that works.
 
import requests

payload = { 'api_key': 'xxx', 'url': 'xxx', 'premium' : 'true' }
r = requests.get('https://api.scraperapi.com/', params=payload)
print(r.text)

Request failed. You will not be charged for this request. Please make sure your url is correct and try the request again. If this continues to happen, please contact [email protected]. The domain may be protected, please try adding the premium=true OR ultra_premium=true parameter to your request.

Is it a limitation of the trial? I sent them an email already but I haven't gotten any replies yet.

EDIT: I'll try following the guide you sent me and see if that works.
Dunno where scraperapi.com comes into it, the service I recommended was scrapeops.io.
 
Dunno where scraperapi.com comes into it, the service I recommended was scrapeops.io.
I must've clicked something wrong, I ended up there somehow trying to register for scrapeops.io. I'll take a look, thank you!
 
@Steptoe
It works at ~200 solves per $ (250 solves per $ on large plans). I'm gonna see what is cheaper, my current solution vs. this one, also, still looking for alternatives!
For some reason it only solves with "generic_level_3" bypass, the most expensive one, not "cloudflare", I guess it's because it's a v3 challenge + turnstile?
 
Last edited:
Back
Top