Skip to main content

Your proxy access information

Bright Data proxies are grouped in “Proxy zones”. Each zone holds the configuration for the proxies it holds.To get access to the proxy zone:
  1. Login to Bright Data control panel
  2. Select the proxy zone or setup a new one
  3. Click on the new zone name, and select the Overview tab.
  4. In the overview tab, under Access details you can find the proxy access details, and copy them to clipboard on click.
  5. You will need: Proxy Host, Proxy Port, Proxy Zone username and Proxy Zone password.
  6. Click on the copy icons to copy the text to your clipboard and paste in your tool’s proxy configuration.

Access Details Section Example

Residential proxy access

To access Bright Data’s Residential Proxies you will need to either get verified by our compliance team, or install a certificate. Read more…

Targeting search engines?

If you target a search engine like google, bing or yandex, you need a special Search Engine Results Page (SERP) proxy API. Use Bright Data SERP API to target search engines. Click here to read more about Bright Data SERP proxy API.

Correct setup of proxy test to avoid “PROXY ERROR”

In many tools you will see a “test proxy” function, which performs a conncectivity test to your proxy, and some add a geolocation test as well, to identify the location of the proxy. To correctly test your proxy you should target those search queries to: https://geo.brdtest.com/welcome.txt .Some tools use popular search engines (like google.com) as a default test target. Bright Data will block those requests and you tool will show proxy error although your proxy is perfectly fine.If your proxy test fails, this is probably the reason. Make sure that your test domain is not a search engine (this is done in the tool configuration, and not controlled by Bright Data).

What is Puppeteer?

Think of Puppeteer as a remote control for headless browsers. With just a few lines of Node.js code, you can direct browsers to gather information, run tests, and automate routine actions. It’s all about turning tough, time-consuming workflows into quick, manageable steps.
Maintain a consistent IP throughout your browser session by using the -session parameter in your username. This is essential because BrightData proxies default to rotating IPs with each request. Learn moreNew users should begin with ISP or Data Center proxies, as residential proxies are incompatible with browser integration in Immediate-Access mode .For use-cases related to account management, use a consistent static dedicated IP for each account you are managing. dedicated ISP proxies should be used for this.

How to Integrate Bright Data With Puppeteer

Getting Started

Before integrating Bright Data, ensure you have the essentials:
  1. Node.js: Install the latest version from nodejs.org.
  2. Project Setup: Use a code editor you prefer (such as VS Code) and initialize a Node.js project.
  3. Puppeteer: Add Puppeteer to your project by running:
npm install puppeteer

Retrieve Your Bright Data Credentials

Sign in to your Bright Data dashboard and note down your proxy details: Host Port Username Password These credentials will let Puppeteer route traffic through Bright Data’s secure, anonymous proxy network.

Configure Puppeteer for Bright Data

If you want to use Puppeteer with Bright Data’s Browser API, please refer to the Browser API documentation for correct setup and code examples. Proxy Integration guides below are for direct proxy integration, not for Browser API.
To connect Puppeteer with Bright Data:
  1. Set the Proxy Server: Add --proxy-server=[HOST]:[PORT] to Puppeteer’s launch arguments.
  2. Authenticate: Use page.authenticate() in Puppeteer to provide your Bright Data username and password.

Example Code

Here’s a sample script to guide you:
const puppeteer = require('puppeteer');

(async () => {
  // Launch Chromium with the Bright Data proxy configured
  const browser = await puppeteer.launch({
    headless: false,  // Change to true if you prefer headless mode
    args: ['--proxy-server=[HOST]:[PORT]'] // Replace with your Bright Data host and port
  });

  const page = await browser.newPage();

// Log in with your Bright Data credentials
  await page.authenticate({
    username: '[USERNAME]',   // Replace with your Bright Data username
    password: '[PASSWORD]'    // Replace with your Bright Data password
  });

 // Test the setup by visiting an IP-checking site
  await page.goto('http://httpbin.org/ip');
  // Capture a screenshot to confirm everything’s working
  await page.screenshot({path: 'example.png'});

  await browser.close();
})();
With Bright Data proxies integrated into Puppeteer, you gain secure and private browsing for all your automated tasks. Enjoy smoother data collection, reduced detection risks, and a more reliable workflow—so you can focus on insights and results, not on technical roadblocks.