Proxy services

Use the industry’s most advanced proxy infrastructure

  • GDPR & CCPA compliant
  • 100M proxy IPs from 195 countries
  • The best proxy performance in the world
  • City, state, country, ZIP, and ASN level targeting - Free!
No credit card required
Proxy services

Proxy Pricing

PAY AS YOU GO
$8.4 / GB
No commitment
Start free trial
Use our proxies without monthly commitment
69 GB Included
$7.14 / GB
$499 Billed monthly
Start free trial
Perfect for small businesses with moderate usage
158 GB Included
$6.3 / GB
$999 Billed monthly
Start free trial
Designed for large teams with extensive operational needs
339 GB Included
$5.88 / GB
$1999 Billed monthly
Start free trial
Optimized for enterprises running large-scale operations
Need more than 1 TB?
Contact us
  • Unlimited scale
  • Unlimited seats
  • Premium SLA
  • 99.99% Network Uptime
  • Free Proxy Manager
  • Complete data coverage
  • Custom price per GB
  • Custom solutions
10 IPs
$1.8 / IP
$18 Billed monthly
Start free trial
Perfect for small businesses with moderate usage
100 IPs
$1.45 / IP
$145 Billed monthly
Start free trial
Tailored for teams looking to scale their operations
500 IPs
$1.4 / IP
$700 Billed monthly
Start free trial
Designed for large teams with extensive operational needs
1000 IPs
$1.3 / IP
$1,300 Billed monthly
Start free trial
Optimized for enterprises running large-scale operations
Need more than 1,000 IPs?
Contact us
  • Unlimited scale
  • Unlimited seats
  • Premium SLA
  • 99.99% Network Uptime
  • Free Proxy Manager
  • Complete data coverage
  • Custom price per IP
  • Custom solutions
10 IPs
$1.40 / IP
$14 Billed monthly
Start free trial
Perfect for small businesses with moderate usage
100 IPs
$1.0 / IP
$100 Billed monthly
Start free trial
Tailored for teams looking to scale their operations
500 IPs
$0.95 / IP
$475 Billed monthly
Start free trial
Designed for large teams with extensive operational needs
1000 IPs
$0.90 / IP
$900 Billed monthly
Start free trial
Optimized for enterprises running large-scale operations
Need more than 1,000 IPs?
Contact us
  • Unlimited scale
  • Unlimited seats
  • Premium SLA
  • 99.99% Network Uptime
  • Free Proxy Manager
  • Complete data coverage
  • Custom price per IP
  • Custom solutions
PAY AS YOU GO
$8.4 / GB
No commitment
Start free trial
Use our proxies without monthly commitment
69 GB Included
$7.14 / GB
$499 Billed monthly
Start free trial
Perfect for small businesses with moderate usage
158 GB Included
$6.3 / GB
$999 Billed monthly
Start free trial
Designed for large teams with extensive operational needs
339 GB Included
$5.88 / GB
$1999 Billed monthly
Start free trial
Optimized for enterprises running large-scale operations
Need more than 1 TB?
Contact us
  • Unlimited scale
  • Unlimited seats
  • Premium SLA
  • 99.99% Network Uptime
  • Free Proxy Manager
  • Complete data coverage
  • Custom price per GB
  • Custom solutions
We accept these payment methods:

Bright Data is the leading proxy service provider

awards
PROXY INFRASTRUCTURE

Powered by an award-winning proxy network

Over 100M proxy IPs, best-in-class technology and the ability to target any country, city, ZIP Code, carrier, & ASN make our premium proxy services a top choice for developers.

RESIDENTIAL PROXIES

Powerful residential proxies

The world’s #1 Residential Proxy Network enables you to access any website content regardless of location, while avoiding IP bans and CAPTCHAs. Bright Data’s Residential Proxies provide the most comprehensive geographic coverage, covering 195 locations including country and city-level website targeting. With 72 million+ real IPs, shared by real people in our community-sharing network, the Residential Network enables you to scale your data collection projects with the highest speeds and success rates.

  • 72 million+ real residential IPs
  • Fastest residential speeds
  • 99.99% uptime - extremely stable
  • 100% ethically-sourced proxies in resource-sharing community
ISP PROXIES

Stable static residential proxies

Leverage real residential IPs from any city in the world, assigned by ISPs and leased to Bright Data for your exclusive use, for as long as you require. With guaranteed long sessions you can use the same IP address without limitation and without any obstructions or delays.

  • Keep your IPs for life
  • Fastest static residential (ISP) IPs in the industry
  • 700,000+ fully-compliant static residential (ISP) proxies
  • Unparalleled quality of Service
DATACENTER PROXIES

Reliable datacenter proxies

Access the most advanced Datacenter proxy network in the industry built of multiple IP types across the world, in a shared IP pool or for individual purchase. With country and city targeting, you’ll unlock the web with precision accuracy and enjoy the best proxy performance at scale, so that your data arrives reliably for real-time data-driven decisions.

  • 770,000+ Datacenter IPs
  • Global coverage, including US, China, & Europe
  • Zero bandwidth and target limitations
  • Country, state, & city-level targeting
MOBILE PROXIES

Secure mobile proxies

See the web as any real mobile user around the world would with the most advanced Mobile IP Network offering the fastest and largest real-peer 3G/4G IPs network in the world. Our Mobile IP network is located in every city and has no limitations on concurrent connections. Verify online assets using the highest resolution (ASN and carrier- targeting) IPs available.

  • Largest and fastest 3G/4G mobile proxy network
  • 7 million+ real 3G/4G mobile IPs from across the world
  • Target any country, city, carrier and ASN
  • No limits on concurrent connections

No-hassles integration for an easy start

                              import sys

# Replace '[your customerID]', 'residential', and '[your password]' with your actual Bright Data customer ID, zone, and password
if sys.version_info[0]==2:
    import six
    from six.moves.urllib import request
    opener = request.build_opener(
        request.ProxyHandler(
            {'http': 'http://brd-customer-[your customerID]-zone-residential:"[your password]"@brd.superproxy.io:33335',
             'https': 'http://brd-customer-[your customerID]-zone-residential:"[your password]"@brd.superproxy.io:33335'}))
    print(opener.open('https://geo.brdtest.com/mygeo.json').read())

if sys.version_info[0]==3:
    import urllib.request
    opener = urllib.request.build_opener(
        urllib.request.ProxyHandler(
            {'http': 'http://brd-customer-[your customerID]-zone-residential:"[your password]"@brd.superproxy.io:33335',
             'https': 'http://brd-customer-[your customerID]-zone-residential:"[your password]"@brd.superproxy.io:33335'}))
    print(opener.open('https://geo.brdtest.com/mygeo.json').read())
                              
                            
                              package example;

import org.apache.http.HttpHost;
import org.apache.http.client.fluent.*;

public class Example {
    public static void main(String[] args) throws Exception {
        // Replace '[your customerID]' and '[your password]' with your actual credentials
        HttpHost proxy = new HttpHost("brd.superproxy.io", 33335);
        String res = Executor.newInstance()
            .auth(proxy, "brd-customer-[your customerID]-zone-residential", "[your password]")
            .execute(Request.Get("https://geo.brdtest.com/mygeo.json").viaProxy(proxy))
            .returnContent().asString();
        System.out.println(res);
    }
}
                              
                            
                              using System;
using System.Net;

class Example
{
    static void Main()
    {
        // Replace '[your customerID]' and '[your password]' with your actual credentials
        var client = new WebClient();
        client.Proxy = new WebProxy("brd.superproxy.io:33335");
        client.Proxy.Credentials = new NetworkCredential("brd-customer-[your customerID]-zone-residential", "[your password]");
        Console.WriteLine(client.DownloadString("https://geo.brdtest.com/mygeo.json"));
    }
}
                              
                            
                              require('request-promise')({
    url: 'https://geo.brdtest.com/mygeo.json',
    proxy: 'http://brd-customer-[your customerID]-zone-residential:"[your password]"@brd.superproxy.io:33335',
    })
.then(function(data){ console.log(data); },
    function(err){ console.error(err); });
                              
                            
                              # Replace '[your customerID]' and '[your password]' with your actual credentials
curl --proxy brd.superproxy.io:33335 --proxy-user brd-customer-[your customerID]-zone-residential:[your password] -k "https://geo.brdtest.com/mygeo.json"
                              
                            
With just a few lines of code, you can integration our residential proxies with any application using any coding language.
  • Manage your IPs from the Bright Data Control Panel or API
  • Documentation for developers
  • Supports third-party software integration
  • Create and manage sub-users

The best customer experience in the industry

You ask, we develop

New feature releases every day

24/7 global support

To answer any questions right when you need it

Full transparency

Real-time network performance dashboard

Dedicated Account Managers

To optimize your performance

Tailored solutions

To meet your data collection goals

All the proxy services you need in one easy-to-use platform