The Easiest Forwarding HTTP Proxy for Serverless
Cloudflare Workers, Vercel Edge Functions, and other serverless environments don't support traditional HTTP proxies. Better Proxy solves this with a simple forwarding API that works anywhere.
Why Choose Better Proxy?
Powerful proxy network supporting multiple protocols (HTTP/HTTPS/SOCKS5) to meet all your scraping needs.
100M+ Residential IPs
Industry-leading proxy pool with over 100 million IPs for high-demand web scraping tasks. Avoid bot detection and effectively collect public data.
Unlimited Concurrent Sessions
Use our continuously rotating proxy pool and say goodbye to troublesome IP blocks and CAPTCHA verifications.
Free Geolocation
Bypass geo-restrictions by targeting country/region, city, state, postal code, coordinates, or ASN.
0.6s Average Response Time
Complete your scraping projects quickly with reliable infrastructure.
Automatic Proxy Rotation
Get a different IP address with every new request automatically.
30-Minute Sticky Sessions
Maintain the same IP for up to 30 minutes by adding a session ID parameter.
Basic Usage Tutorial
Making a proxied request is as simple as sending a POST to our API.
POST https://api.betterproxy.dev/forward
Headers:
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
Body:
{
"url": "https://example.com/api/data",
"method": "GET",
"headers": {
"User-Agent": "MyApp/1.0"
},
"payload": null
}{
"status": 200,
"headers": {
"content-type": "application/json",
"cache-control": "max-age=3600"
},
"body": {
"data": "Your proxied response here"
}
}