Cookie使用通知

本网站会使用cookies,以便记住您的选择,并提供个性化服务。了解更多

如果网站速度慢,请使用网站链接 2captcha.cn

Buy datacenter proxies

  • 220+ Countries
  • 99,9% Uptime
  • ~0,7 Response time

Avoid restrictions and blocks with the fastest datacenter proxies in the industry. Use the industry’s most advanced proxy infrastructure.

Pricing

  • Rotating datacenter proxies
  • Dedicated datacenter proxies
  • Cheap datacenter proxies
  • Best datacenter proxy provider

The best customer experience provided by leading datacenter proxy service

  • «G2» rating - 4.5 out of 5 stars
  • «SourceForge» rating - 4.5 out of 5 stars
  • «Captchathecat» rating - 9.8 out of 10 stars

如何开始

  • 在网站注册
  • 选择所需流量
  • 打开生成器并设定连接设置:GEO、协议
  • 获取授权数据以启动
  • 连接至代理服务器

Datacenter proxies price

1 GB$6

Price$6/GBDiscount 0%We accept these payment methods:We support Visa, Mastercard, Airtm, PayPal, Alipay, BTC, USDT payment methods

Proxy plans is directly linked to the volume of gigabytes you purchase. The more gigabytes you procure, the greater the discount you unlock! It's that simple. Unlock discounts with bulk proxy purchases!

  • Flexible rotation options
  • API access
  • SOCKS5 supported
  • Unlimited traffic

Purchase of datacenter proxies plans

  • $6/ 1 GB
    0% 折扣
    $6每 1GB 价格
  • $60
    $50/ 10 GB
    16.7% 折扣
    $5每 1GB 价格
  • $180
    $120/ 30 GB
    33.3% 折扣
    $4每 1GB 价格
  • 流行计划
    $600
    $300/ 100 GB
    50% 折扣
    $3每 1GB 价格
  • $1,200
    $558/ 200 GB
    53.5% 折扣
    $2.79每 1GB 价格
  • $6,000
    $2,490/ 1 TB
    58.5% 折扣
    $2.49每 1GB 价格
  • $18,000
    $6,570/ 3 TB
    63.5% 折扣
    $2.19每 1GB 价格
  • $30,000
    $9,950/ 5 TB
    66.8% 折扣
    $1.99每 1GB 价格

Datacenter proxies worldwide

Our datacenter proxies provide extensive coverage worldwide, ensuring reliable and fast connections. 2Captcha offers a vast network of ethically sourced IPs, complete with advanced filtering options to target specific countries, regions, cities.

  • United States
    United States2,752,824 IPs
  • Brazil
    Brazil12,629,978 IPs
  • France
    France5,187,963 IPs
  • Russia
    Russia3,484,926 IPs
  • Canada
    Canada3,693,481 IPs
  • Germany
    Germany2,227,198 IPs
  • Australia
    Australia265,445 IPs
  • Great Britain
    Great Britain1,274,731 IPs
Best and cheap datacenter proxies

Best and cheap datacenter proxies

Leveraging advanced datacenter technology, our proxies offer high-speed, reliable, and secure connectivity. Ideal for web scraping, SEO, and privacy protection, our datacenter proxies ensure top-notch performance and stability.

Every datacenter proxy plan includes VIP integration support, ensuring you’re set up in minutes. 2Captcha supports use cases that other proxy providers can't match.

Power your web scraping & data gathering with our datacenter proxies. Gain access to over 220 countries and 90M+ worldwide clean IP addresses to access any content at scale.

  • Datacenter rotating proxies

    Datacenter proxies rotate automatically. If you lose a connection, 2Captcha automatically assign you a new IP, so you don’t lose your progress.

  • Geo-location targeting

    Target by continent, country, state, city, coordinate, or ASN with no extra cost. Reach targets in 220+ countries. Advanced targeting and filtering capabilities.

  • Quick and easy integration

    Smooth integration support for any use case. Easily manage. Collect data in new ways designed for mobile and never look suspicious when making requests.

  • Datacenter networks

    The highest quality proxies with leading success rates from datacenters.

  • Fast

    You can use our global network of datacenter proxies to reliably scrape all the data your business needs while bypassing CAPTCHAs and sophisticated bot blocks. Fast 4G connections from major networks.

  • Ethically sourced

    Datacenter proxies are A+ tier model and come from legitimate sources.

  • Additional security

    Datacenter proxies support protocols: HTTP, HTTPS and SOCKS5.

  • Best datacenter proxy network

    A large pool of IPs across countries and mobile carriers. Access the most stable IP pool of the best datacenter proxies.

Datacenter proxies use cases

Datacenter proxies use cases

Thanks to the high trust rating of our datacenter proxies, you can run various automation bots and scripts with multiple accounts on social media or any other website with IP-based restrictions.

  • 测试测试

    与仿真器无缝集成,用于应用程序测试或自动化。

  • 刮削刮削

    从应用程序和平台抓取数据。隐藏目标应用程序和网站的搜索活动。

  • 评论监测评论监测

    Use stable and reliable datacenter proxy network to monitor reviews all over the world without any IP blocks.

  • 广告验证广告验证

    Rotating datacenter proxies is the most effective tool to check how ads are displayed to different audiences globally.

  • 网络安全网络安全

    Datacenter IPs are great for identifying threats, testing applications, or monitoring websites in different locations.

  • 旅行票价聚合旅行票价聚合

    Buy datacenter proxies, harvest real-time localized data, and provide your customers only with new and relevant travel offers.

Buy datacenter proxies

  • 访问任何网站并提取所需数据
  • 像普通用户一样行事,避免网站屏蔽
  • 绕过GEO内容限制,访问本地化数据
  • 享受更快一键连接速度

代码示例

轻松地将代理合并到您的项目中。我们确保可将产品无缝集成到您的基础设施中,使整个过程尽可能轻松。支持多种语言和现成代码示例,保证您的网络项目快速而简单地启动。

<?php

$username = 'ACCOUNTNAME';
$password = 'PASSWORD';
$PROXY_PORT = 9999;
$PROXY_DNS = 'xx.xx.xx.xx';

$urlToGet = 'http://ip-api.com/json';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $urlToGet);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, $PROXY_PORT);
curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP');
curl_setopt($ch, CURLOPT_PROXY, $PROXY_DNS);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $username.':'.$password);
$data = curl_exec($ch);
curl_close($ch);

echo $data;
?>
const axios = require('axios');
const username = 'ACCOUNTNAME';
const password = 'PASSWORD';
const PROXY_DNS = 'xx.xx.xx.xx';
const PROXY_PORT = 9999;

axios
  .get('http://ip-api.com/json', {
    proxy: {
      protocol: 'http',
      host: PROXY_DNS,
      port: PROXY_PORT,
      auth: {
        username,
        password,
      },
    },
  })
  .then((res) => {
    console.log(res.data);
  })
  .catch((err) => console.error(err));
using System;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;

namespace ProxyHttpExample
{
    public static class Program
    {
        private const string Username = "ACCOUNTNAME";
        private const string Password = "PASSWORD";
        private const string ProxyDns = "http://xx.xx.xx.xx:9999";
        private const string UrlToGet = "http://ip-api.com/json";

        public static async Task Main()
        {
            using var httpClient = new HttpClient(new HttpClientHandler
            {
        Proxy = new WebProxy
        {
          Address = new Uri(ProxyDns),
          Credentials = new NetworkCredential(Username, Password),
        }
            });

            using var responseMessage = await httpClient.GetAsync(UrlToGet);

            var contentString = await responseMessage.Content.ReadAsStringAsync();

            Console.WriteLine("Response:" + Environment.NewLine + contentString);
            Console.ReadKey(true);
        }
    }
}
package main

import (
  "net/url"
  "net/http"
  "fmt"
  "io/ioutil"
  "os"
)

const(
  proxyUrlTemplate = "http://%s:%s@%s:%s"
)

const (
  username = "ACCOUNTNAME"
  password = "PASSWORD"

  PROXY_DNS = "xx.xx.xx.xx"
  PROXY_PORT = "9999"

  urlToGet = "http://ip-api.com/json"
)

func main() {
  proxy := fmt.Sprintf(proxyUrlTemplate, username, password, PROXY_DNS, PROXY_PORT)
  proxyURL, err := url.Parse(proxy)
  if err != nil {
    fmt.Printf("failed to form proxy URL: %v", err)
    os.Exit(1)
  }

  u, err := url.Parse(urlToGet)
  if err != nil {
    fmt.Printf("failed to form GET request URL: %v", err)
    os.Exit(1)
  }

  transport := &http.Transport{Proxy: http.ProxyURL(proxyURL)}
  client := &http.Client{Transport: transport}

  request, err := http.NewRequest("GET", u.String(), nil)
  if err != nil {
    fmt.Printf("failed to form GET request: %v", err)
    os.Exit(1)
  }

  response, err := client.Do(request)
  if err != nil {
    fmt.Printf("failed to perform GET request: %v", err)
    os.Exit(1)
  }

  responseBodyBytes, err := ioutil.ReadAll(response.Body)
  if err != nil {
    fmt.Printf("could not read response body bytes: %v", err)
    os.Exit(1)
  }
  fmt.Printf("Response: %s ", string(responseBodyBytes))
}
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.*;

public class Application {
    private static String USERNAME = "ACCOUNTNAME";
    private static String PASSWORD = "PASSWORD";

    private static String PROXY_DNS = "xx.xx.xx.xx";
    private static int PROXY_PORT = 9999;

    private static String URL_TO_GET = "http://ip-api.com/json";

    public static void main(String[] args) throws IOException {
        final Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(PROXY_DNS, PROXY_PORT));
        Authenticator.setDefault(
                new Authenticator() {
                    public PasswordAuthentication getPasswordAuthentication() {
                        return new PasswordAuthentication(
                                USERNAME, PASSWORD.toCharArray()
                        );
                    }
                }
        );

        final URL url = new URL(URL_TO_GET);
        final URLConnection urlConnection = url.openConnection(proxy);

        final BufferedReader bufferedReader = new BufferedReader(
                new InputStreamReader(urlConnection.getInputStream()));
        final StringBuilder response = new StringBuilder();

        String inputLine;
        while ((inputLine = bufferedReader.readLine()) != null) {
            response.append(inputLine);
        }
        bufferedReader.close();

        System.out.println(String.format("Response: %s", response.toString()));
    }
}
#!/usr/bin/env perl

use LWP::Simple qw( $ua get );

my $username = 'ACCOUNTNAME';
my $password = 'PASSWORD';

my $PROXY_DNS = 'xx.xx.xx.xx:9999';

my $urlToGet = 'http://ip-api.com/json';

$ua->proxy('http', sprintf('http://%s:%s@%s', $username, $password, $PROXY_DNS));

my $contents = get($urlToGet);
print "Response: $contents"
#!/usr/bin/env python3

import requests

username = "ACCOUNTNAME"
password = "PASSWORD"
PROXY_DNS = "xx.xx.xx.xx:9999"
urlToGet = "http://ip-api.com/json"
proxy = {"http":"http://{}:{}@{}".format(username, password, PROXY_DNS)}
r = requests.get(urlToGet , proxies=proxy)

print("Response:{}".format(r.text))
#!/usr/bin/env bash

export USERNAME=ACCOUNTNAME
export PASSWORD=PASSWORD
export PROXY_DNS=xx.xx.xx.xx:9999
curl -x http://$USERNAME:$PASSWORD@$PROXY_DNS http://ip-api.com/json && echo
Imports System.IO
Imports System.Net

Module Module1

    Private Const Username As String = "ACCOUNTNAME"
    Private Const Password As String = "PASSWORD"
    Private Const PROXY_DNS As String = "http://xx.xx.xx.xx:9999"
    Private Const UrlToGet As String = "http://ip-api.com/json"

    Sub Main()
        Dim httpWebRequest = CType(WebRequest.Create(UrlToGet), HttpWebRequest)
        Dim webProxy = New WebProxy(New Uri(PROXY_DNS)) With {
                .Credentials = New NetworkCredential(Username, Password)
                }
        httpWebRequest.Proxy = webProxy
        Dim httpWebResponse = CType(httpWebRequest.GetResponse(), HttpWebResponse)
        Dim responseStream = httpWebResponse.GetResponseStream()

        If responseStream Is Nothing Then
            Return
        End If

        Dim responseString = New StreamReader(responseStream).ReadToEnd()
        Console.WriteLine($"Response:
{responseString}")
        Console.ReadKey()
    End Sub

End Module

What are datacenter proxies

«2Captcha» datacenter proxies service

A datacenter proxy is a type of proxy server that is not affiliated with an Internet Service Provider (ISP) but instead comes from a secondary corporation, such as a cloud service provider or a hosting company. These proxies are created in data centers and are known for their high-speed performance and stability. Key features of datacenter proxies include high availability and uptime, fast connection speeds due to powerful data center infrastructure, and cost-effectiveness compared to residential proxies. Find out more about what datacenter proxies meaning from the article.

常见问题

如何生成 proxy 配置?
  1. 转到代理页面上的配置器块。
  2. 选择类型:
    • 州(省) - 城市 - 按州和城市定位
    • ISP - 以互联网服务提供商为目标
  3. 选择地理位置设置:
    • 全球混合 - 随机选择地理位置
    • 欧洲混合 - 在欧洲随机选择地理位置
    • 亚洲混合 - 在亚洲随机挑选地理区域
    • 城市组合 - 随机选择城市
  4. 根据需要设置 "IP 持续时间"。它规定了代理的有效时间,从 0(每个新请求都通过一个新的 IP 地址)到 120 分钟不等。我们建议设置为 3 分钟。
  5. 按生成按钮并检查实际代理配置。
如何手动修改 IP 地址?
您可以更改 proxy 的设置(例如 Geo 设置),也可以将 IP 持续时间设置为 0,这样每次使用时 IP 都会更改。
"IP 持续时间(0 - 120 分钟)"是否意味着 2 小时(120 分钟)后代理将停止工作?如果是,有办法更改吗?
不行,无法将会话时间保持在 120 分钟以上
How is the data encrypted when passing through your residential proxies? Are there any specific encryption protocols you use?
We are utilizing those protocols: HTTP, HTTPS and SOCKS5. We don't use any more protocols.
How can I test before I buy?
Unfortunately, we can't provide a trial or free traffic for a proxy.
What is the maximum threads your proxy could handle?
We don't limit the number of threads you use.
Do you somehow limit traffic? Any blocked sites may be?
You will not be able to use proxy with paypal.com and web.telegram.org
Where is your service available?
Worldwide, except China.
Is there any due date for the purchased traffic?
Yes, you should use prepaid traffic within 3 months.
How is IP changing: strictly on time or sometimes when there are no requests?
The IP-address is changed strictly according to the time set in the settings, unless something unpredictable happens (user turned off the PC, disconnection, etc.).
Will the sessions be interrupted when the IP address changes?
When the IP address duration is over, the new IP address is instantly assigned.
How can I change the IP from time to time?
Use IP duration for setting the time of proxy work.
How can I generate a bulk proxy list?
You can use 'Generate proxy list' function to get a list of proxy with unique IP addresses.
Will I have guaranteed unique IP addresses using your 'Generate proxy list' function?
The nature of residential proxy doesn't allow us to check all of it at the moment you requested the list because it's dynamic in nature. This depends on the geo-settings of your proxy list. If you try to get, say, 1000 IP out of the city with 100 devices, obviously we will not be able to provide that amount of devices online, so please keep that in mind when you set up the geolocation.
How is traffic counted: separately or incoming plus outgoing?
Traffic is calculated as the sum of incoming and outgoing traffic. We are aware that some services claim that they count only outgoing, but we tested it and have serious doubts about that being so.
Could you block my account for anything?
Please be aware that we have the right to disable an account if we receive a complaint from our payment processor.
What is your policy regarding data logging? How is it stored and protected?
We don't log anything.
Do you somehow track the traffic or websites visited via proxy? Do you disclose this personal information to someone?
No, we don't track anything, and we have no KYC, so it's safe to say we have zero information about customers. So we can't disclose any information about customers, as we store none of it.
  • «GDPR»标志
  • «SSL secured»标志
  • «Google privacy policy»标志
  • «S/MIME»标志
  • «CCPA»标志