curl "https://api.brightdata.com/zone" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer API_TOKEN" \
	-d "{'zone':{'name':'ZONE_NAME'},'plan':{'type':'static|resident','ips_type':'shared|dedicated|selective','ip_alloc_preset':'shared_block','bandwidth':'payperusage|unlimited','mobile':false,'city':false,'asn':false,'vip':false,'vips_type':'shared|vip|domain','vips':0,'domain_whitelist':'test.com fb.com','not_country':null,'vip_country':'any','exclusive_sec':0,'exclusive_type':'days','exclusive_num':0,'ips':0}}"
{
  "plan": {
    "start": "2019-07-15T18:08:59.269Z",
    "type": "static",
    "ips_type": "shared",
    "ip_alloc_preset": "shared_block",
    "bandwidth": "payperusage"
  },
  "zone": {
    "ips": "any",
    "password": [
      "PASSWORD"
    ],
    "plans": [
      {
        "start": "2019-07-15T18:08:59.269Z",
        "type": "static",
        "ips_type": "shared",
        "ip_alloc_preset": "shared_block",
        "bandwidth": "payperusage"
      }
    ]
  }
}

API Endpoint: POST /api/zone

zone
User Object
required
plan
User Object
required

Add a Plan Examples

  • Datacenter

  • ISP

  • Residential

  • Mobile

  • Unlocker

  • SERP

Add a Datacenter Shared - Pay per Usage zone
curl "https://api.brightdata.com/zone" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer API_TOKEN" \
  -d "{'zone':{'name':'ZONE_NAME'},'plan':{'type':'static','ips_type':'shared','ip_alloc_preset':'shared_block'}}"