- 代理
- Proxy Manager
- Web Unlocker & SERP API
- Web Scraper IDE API
- Web Scraper API
- Scraping Shield
- 账户管理 API
- POST添加区域
- POST建立域名白名单/黑名单
- POST将 IP 列入黑名单
- POST建立 IP 白名单
- POST添加静态 IP
- POST在区域间迁移静态 IP
- POST刷新专用住宅 IP
- POST刷新静态 IP(数据中心/ISP)
- PUT更改账户状态
- GET账户状态
- GET活动区域
- GET可用的 IP/区域
- GET数据中心和 ISP 的可用 IP 数量
- GET获取国家
- GET获取国家/地区城市
- GET获取当前服务状态
- GET列出所有国家/地区的可用城市(静态网络)
- GET最近尝试使用您的区域的 IP
- GET可用数据中心和 ISP IP/区域
- GET区域的带宽统计信息
- GET所有区域的带宽统计信息
- GET区域总成本和带宽
- GET区域黑名单 IP 列表
- GET特定区域的白名单 IP 列表
- GET静态区域的实时状态
- GET总余额
- GET区域信息
- GET区域密码
- GET区域权限
- GET区域统计信息
- GET区域状态
- GET获取待更换代理
- DEL移除专用住宅 IP
- DEL从区域白名单/黑名单中移除域名
- DEL从区域黑名单中移除 IP
- DEL从区域白名单中移除 IP
- DEL移除静态 IP(数据中心/ISP)
- DEL移除区域
- POST切换 100% 正常运行时间
- POST开启/关闭区域
- POST
- 市场数据集 API
账户管理 API
获取可用国家
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>"
]
}
}
}
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
此页面对您有帮助吗?
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>"
]
}
}
}