More than just a Proxy Network. Proxycurl is a network of browsers with an API.
Crawl popular websites such as Google or Amazon signed in as real users without Captcha
Crawl the web with 150,000 unique residential IP addresses located around the world
Proxycurl lets you crawl the web with in-page assets downloaded and javascript rendered
Run custom Javascript code on nodes after the page is loaded, and get the results back
import requests
import json
API_HOSTNAME = 'https://replace.me.with.real.hostname.com' # hostname will be given on sign up
payload = {
'id': 'unique-id',
'url': 'https://api.ipify.org',
'type': 'xhr',
'headers': {'LANG', 'en'},
'method': 'get'
}
r = requests.post(API_HOSTNAME, auth=HTTPBasicAuth('user', 'pass'), data=json.dumps(payload))