curl "https://api.brightdata.com/zone/ips" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer API_TOKEN" \
  -d '{"customer":"CUSTOMER","zone":"ZONE","count":2}'
{
    "ips":["1.1.1.1","1.1.1.2","1.1.1.3"],
    "new_ips":["1.1.1.1","1.1.1.3"]
}

API Endpoint: POST /api/zone/ips

customer
string
required

Customer

zone
string
required

Zone name

count
integer
required

Number of IPs

country
string

new IPs’ country (e.g. us)

country_city
string

new IPs’ city (e.g. us-chicago)

Code Examples