curl --request GET \
--url https://api.brightdata.com/zone \
--header 'Authorization: Bearer <token>'
{
"created": "2024-10-28T15:58:10.593Z",
"password": [
"zone-passowrd"
],
"ips": [
"any"
],
"plan": {
"start": "2024-10-31T13:38:23.665Z",
"product": "dc",
"type": "static",
"ip_fallback": 1,
"ips_type": "shared",
"ips": 120,
"bandwidth": "unlimited",
"unl_bw_tiers": "std",
"auto_cost_override": {
"ip_bw": 1,
"price_group": "shared"
}
},
"description": "hash",
"perm": "country"
}
Get Zone status
curl --request GET \
--url https://api.brightdata.com/zone \
--header 'Authorization: Bearer <token>'
{
"created": "2024-10-28T15:58:10.593Z",
"password": [
"zone-passowrd"
],
"ips": [
"any"
],
"plan": {
"start": "2024-10-31T13:38:23.665Z",
"product": "dc",
"type": "static",
"ip_fallback": 1,
"ips_type": "shared",
"ips": 120,
"bandwidth": "unlimited",
"unl_bw_tiers": "std",
"auto_cost_override": {
"ip_bw": 1,
"price_group": "shared"
}
},
"description": "hash",
"perm": "country"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Zone Info
OK
The response is of type object
.
Was this page helpful?