Skip to main content
  1. Residential Proxy
  2. Mobile Proxy
  3. ISP Proxy
  4. Datacenter Proxy
  5. SERP API
  6. Browser API
  7. Unlocker API
To get started, you need your API credentials, your Username and Password along with the Host name. You can find these credentials in the Overview tab of the proxy product.

Make your first request in minutes

Test the Browser API in minutes with these ready-to-use code examples.

Nodejs Puppeteer Example

Node.js Playwright Example

Node.js Selenium Example

Code Examples

Once you have your API credentials, use the following code to send your first request:
curl "http://brdtest.com/myip.json" --proxy brd.superproxy.io:33335 --proxy-user brd-customer-<customer_id>-zone-<zone_name>:<zone_password>
The code above uses the residential proxy to send a request to http://brdtest.com/myip.json. It returns your IP information in a JSON format:
Output
{
  "ip": "ALLOCATED_IP",
  "country": "PK",
  "asn": {
    "asnum": 203020,
    "org_name": "HostRoyale Technologies Pvt Ltd"
  },
  "geo": {
    "city": "Islamabad",
    "region": "IS",
    "region_name": "Islamabad",
    "postal_code": "44040",
    "latitude": 33.7233,
    "longitude": 73.0435,
    "tz": "Asia/Karachi",
    "lum_city": "islamabad",
    "lum_region": "is"
  }
}
Now, replace “https://brdtest.com/myip.json” with the website of your choice and … That’s it!