Proxies
Residential Proxies
Allowlisted 200M+ IPs from real ISP. Managed/obtained proxies via dashboard.
Residential (Socks5) Proxies
Over 200 million real IPs in 190+ locations,
Unlimited Residential Proxies
Use stable, fast, and furious 700K+ datacenter lPsworldwide.
Static Residential proxies
Long-lasting dedicated proxy, non-rotating residential proxy
Dedicated Datacenter Proxies
Use stable, fast, and furious 700K+ datacenter lPsworldwide.
Proxies
API
Proxy list is generated through an API link and applied to compatible programs after whitelist IP authorization
User+Pass Auth
Create credential freely and use rotating proxies on any device or software without allowlisting IP
Proxy Manager
Manage all proxies using ABCProxy's self-developed APM interface
Proxies
Residential Proxies
Allowlisted 200M+ IPs from real ISP. Managed/obtained proxies via dashboard.
Starts from
$0.77/ GB
Residential (Socks5) Proxies
Over 200 million real IPs in 190+ locations,
Starts from
$0.045/ IP
Unlimited Residential Proxies
Use stable, fast, and furious 700K+ datacenter lPsworldwide.
Starts from
$79.17/ Day
Rotating ISP Proxies
ABCProxy's Rotating ISP Proxies guarantee long session time.
Starts from
$0.77/ GB
Static Residential Proxies
Long-lasting dedicated proxy, non-rotating residential proxy
Starts from
$5/MONTH
Dedicated Datacenter Proxies
Use stable, fast, and furious 700K+ datacenter lPsworldwide.
Starts from
$4.5/MONTH
Advanced Proxies Solutions
Web Unblocker
Simulate real user behavior to over- come anti-bot detection
Starts from
$6/GB
Getting Started
Knowledge Base
English
繁體中文
Русский
Indonesia
Português
Español
بالعربية
Market Ressarch
Travel Fare Aggregation
Sales & E-commerce
SERP & SEO
Ad Tech
Social Media for Marketing
Sneaker & Tickets
Data Scraping
Price Monitoring
Email Protection
Review Monitoring
View All
Amazon Proxies
eBay Proxies
Shopify Proxies
Etsy Proxies
Airbnb Proxies
Walmart Proxies
Twitch Proxies
Web Scraping
Facebook Proxies
Discord Proxies
Instagram Proxies
Pinterest Proxies
Reddit Proxies
Tiktok Proxies
Twitter Proxies
Youtube Proxies
ChatGPT Proxies
Diablo Proxies
Silkroad Proxies
Warcraf Proxies
TikTok Shop
Coupon Aggregator
Documentation
FAQ
Affiliate program
Partner Program
Blog
Video tutorial
Solution
IP Pool - Affordable and Secure IP Address Solutions
High Speed - Unleashing the Power of Fast Connections
"Best Static Residential Proxy Providers for Secure and Reliable Browsing"
View all
We accept these payment methods:
We ensure that integrating our products into your scraping infrastructure is as effortless as possible. With multiple language support and ready-to-use code examples, a quick and easy start to your web scraping project is a guarantee.
curl -k -v -x https://unblock.abcproxy.com:17610 \
-U 'USERNAME:PASSWORD' \
'https://www.abcproxy.com/' \
-H 'X-Abc-Render: html'
import requests
# Use your Web Unblocker credentials here.
USERNAME, PASSWORD = 'YOUR_USERNAME', 'YOUR_PASSWORD'
# Define proxy dict.
proxies = {
'http': f'http://{USERNAME}:{PASSWORD}@unblock.abcproxy.com:17610',
'https': f'https://{USERNAME}:{PASSWORD}@unblock.abcproxy.com:17610',
}
headers = {
'X-Abc-Render': 'html'
}
response = requests.get(
'https://www.abcproxy.com/',
verify=False, # It is required to ignore certificate
proxies=proxies,
headers=headers,
)
# Print result page to stdout
print(response.text)
# Save returned HTML to result.html file
with open('result.html', 'w') as f:
f.write(response.text)
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.abcproxy.com/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXY, 'https://unblock.abcproxy.com:17610');
curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'YOUR_USERNAME' . ':' . 'YOUR_PASSWORD');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt_array($ch, array(
CURLOPT_HTTPHEADER => array(
'X-Abc-Render: html'
)
));
$result = curl_exec($ch);
echo $result;
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
import fetch from 'node-fetch';
import { HttpsProxyAgent } from 'https-proxy-agent';
const username = 'YOUR_USERNAME';
const password = 'YOUR_PASSWORD';
const agent = new HttpsProxyAgent(
`https://${username}:${password}@unblock.abcproxy.com:17610`
);
// We recommend accepting our certificate instead of allowing insecure (http) traffic
process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = 0;
const headers = {
'X-Abc-Render': 'html',
}
const response = await fetch('https://www.abcproxy.com/', {
method: 'get',
headers: headers,
agent: agent,
});
console.log(await response.text());
package main
import (
"crypto/tls"
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
func main() {
const Username = "YOUR_USERNAME"
const Password = "YOUR_PASSWORD"
proxyUrl, _ := url.Parse(
fmt.Sprintf(
"https://%s:%s@unblock.abcproxy.com:17610",
Username,
Password,
),
)
customTransport := &http.Transport{Proxy: http.ProxyURL(proxyUrl)}
// We recommend accepting our certificate instead of allowing insecure (http) traffic
customTransport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
client := &http.Client{Transport: customTransport}
request, _ := http.NewRequest("GET",
"https://www.abcproxy.com/",
nil,
)
// Add custom cookies
request.Header.Add("X-Abc-Render", "html")
request.SetBasicAuth(Username, Password)
response, _ := client.Do(request)
responseText, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(responseText))
}
package org.example;
import org.apache.hc.client5.http.auth.AuthScope;
import org.apache.hc.client5.http.auth.CredentialsProvider;
import org.apache.hc.client5.http.classic.methods.HttpGet;
import org.apache.hc.client5.http.config.RequestConfig;
import org.apache.hc.client5.http.impl.auth.CredentialsProviderBuilder;
import org.apache.hc.client5.http.impl.classic.CloseableHttpClient;
import org.apache.hc.client5.http.impl.classic.HttpClients;
import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManagerBuilder;
import org.apache.hc.client5.http.ssl.NoopHostnameVerifier;
import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactoryBuilder;
import org.apache.hc.client5.http.ssl.TrustAllStrategy;
import org.apache.hc.core5.http.HttpHost;
import org.apache.hc.core5.http.io.entity.EntityUtils;
import org.apache.hc.core5.http.message.StatusLine;
import org.apache.hc.core5.ssl.SSLContextBuilder;
import java.util.Arrays;
import java.util.Properties;
public class Main {
public static void main(final String[] args)throws Exception {
final CredentialsProvider credsProvider = CredentialsProviderBuilder.create()
.add(new AuthScope("unblock.abcproxy.com", 17610), "USERNAME", "PASSWORD".toCharArray())
.build();
final HttpHost target = new HttpHost("https", "https://www.abcproxy.com/", 443);
final HttpHost proxy = new HttpHost("https", "unblock.abcproxy.com", 17610);
try (final CloseableHttpClient httpclient = HttpClients.custom()
.setDefaultCredentialsProvider(credsProvider)
.setProxy(proxy)
// We recommend accepting our certificate instead of allowing insecure (http) traffic
.setConnectionManager(PoolingHttpClientConnectionManagerBuilder.create()
.setSSLSocketFactory(SSLConnectionSocketFactoryBuilder.create()
.setSslContext(SSLContextBuilder.create()
.loadTrustMaterial(TrustAllStrategy.INSTANCE)
.build())
.setHostnameVerifier(NoopHostnameVerifier.INSTANCE)
.build())
.build())
.build()) {
final RequestConfig config = RequestConfig.custom()
.build();
final HttpGet request = new HttpGet("/locations.html");
request.addHeader("X-Abc-Render","html");
request.setConfig(config);
System.out.println("Executing request " + request.getMethod() + " " + request.getUri() +
" via " + proxy + " headers: " + Arrays.toString(request.getHeaders()));
httpclient.execute(target, request, response -> {
System.out.println("----------------------------------------");
System.out.println(request + "->" + new StatusLine(response));
EntityUtils.consume(response.getEntity());
return null;
});
}
}
}
using System;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
namespace OxyApi
{
class Program
{
static async Task Main(string[] args)
{
var webProxy = new WebProxy
{
Address = new Uri("https://unblock.abcproxy.com:17610"),
BypassProxyOnLocal = false,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(
userName: "YOUR_USERNAME",
password: "YOUR_PASSWORD"
)
};
var httpClientHandler = new HttpClientHandler
{
Proxy = webProxy,
};
// We recommend accepting our certificate instead of allowing insecure (http) traffic
httpClientHandler.ClientCertificateOptions = ClientCertificateOption.Manual;
httpClientHandler.ServerCertificateCustomValidationCallback =
(httpRequestMessage, cert, cetChain, policyErrors) =>
{
return true;
};
var client = new HttpClient(handler: httpClientHandler, disposeHandler: true);
// Add custom cookies
client.DefaultRequestHeaders.Add("X-Abc-Render", "html");
Uri baseUri = new Uri("https://www.abcproxy.com/");
client.BaseAddress = baseUri;
var requestMessage = new HttpRequestMessage(HttpMethod.Get, "");
var response = await client.SendAsync(requestMessage);
var contents = await response.Content.ReadAsStringAsync();
Console.WriteLine(contents);
}
}
}
Contact:
support@abcproxy.com
For better problem solving:
Please attach your login account
Problem details + problem photo or video
Thank you for your cooperation!
Download