Account Management API
Get Available Countries
- Proxy
- Proxy Manager
- Web Unlocker & SERP API
- Web Scraper IDE API
- Web Scraper API
- Scraping Shield
- Account Management API
- POSTAdd a Zone
- POSTWhitelist/Blacklist Domain(s)
- POSTBlacklist IP(s)
- POSTWhitelist IP(s)
- POSTAdd Static IP(s)
- POSTMigrate Static IPs between zones
- POSTRefresh dedicated residential IPs
- POSTRefresh Static IPs (Datacenter/ISP)
- PUTChange Account Status
- GETAccount status
- GETActive Zones
- GETAvailable IPs/Zone
- GETAvailable Datacenter & ISP IPs count
- GETGet Countries
- GETGet Country Cities
- GETGet current service status
- GETList all available country's cities (static network)
- GETRecent IPs attempting to use your Zone
- GETAvailable Datacenter & ISP IPs/Zone
- GETBandwidth stats for a zone
- GETBandwidth stats for all your zones
- GETTotal cost & bandwidth for a zone
- GETList of blacklisted IPs for a zone
- GETList of whitelisted IPs for a zone
- GETLive status of Static Zone
- GETTotal Balance
- GETZone info
- GETZone Password
- GETZone Permission
- GETZone Statistics
- GETZone status
- GETGet Proxies Pending Replacement
- DELRemove dedicated residential IPs
- DELRemove domain from Zone whitelist/blacklist
- DELRemove IP from Zone blacklist
- DELRemove IP from Zone whitelist
- DELRemove Static IPs (Datacenter/ISP)
- DELRemove a Zone
- POSTSwitch 100% uptime
- POSTTurn on/off Zone
- POST
- Marketplace Dataset API
Account Management API
Get Available Countries
List all available countries per zone type
GET
/
countrieslist
curl --request GET \
--url https://api.brightdata.com/countrieslist \
--header 'Authorization: Bearer <token>'
{
"zone_types": {
"DC_shared": {
"country_codes": [
"<string>"
]
},
"DC_dedicated_ip": {
"country_codes": [
"<string>"
]
},
"DC_dedicated_host": {
"country_codes": [
"<string>"
]
},
"ISP_shared": {
"country_codes": [
"<string>"
]
},
"ISP_dedicated_ip": {
"country_codes": [
"<string>"
]
},
"ISP_dedicated_host": {
"country_codes": [
"<string>"
]
}
}
}
Paste your API token to the authorization field. To get a token, Create an account and learn how to generate a token
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
OK - Successful request with response body
Was this page helpful?
curl --request GET \
--url https://api.brightdata.com/countrieslist \
--header 'Authorization: Bearer <token>'
{
"zone_types": {
"DC_shared": {
"country_codes": [
"<string>"
]
},
"DC_dedicated_ip": {
"country_codes": [
"<string>"
]
},
"DC_dedicated_host": {
"country_codes": [
"<string>"
]
},
"ISP_shared": {
"country_codes": [
"<string>"
]
},
"ISP_dedicated_ip": {
"country_codes": [
"<string>"
]
},
"ISP_dedicated_host": {
"country_codes": [
"<string>"
]
}
}
}