Get list of available cities of static network per country

API endpoint: GET /api/zone/static/cities
Parameters:
  • country [string] (required) - Country
  • pool_ip_type [string] - Network type, optional values :
    • dc - Datacenter (default)
    • static_res - ISP
 
Sample Response: ["us-chicago", "us-ashburn", "us-siouxfalls"]
 
Shell
curl "https://api.brightdata.com/zone/static/cities?country=us&pool_ip_type=dc" -H "Authorization: Bearer API_TOKEN"

Node.js

#!/usr/bin/env node
require('request-promise')({
	url: 'https://api.brightdata.com/zone/static/cities?country=us&pool_ip_type=dc',
	headers: {'Authorization': 'Bearer API_TOKEN'},
}).then(function(data){ console.log(data); },
	function(err){ console.error(err); });

Java

package example;

import org.apache.http.HttpHost;
import org.apache.http.client.fluent.*;

public class Example {
  public static void main(String[] args) throws Exception {
    String res = Executor.newInstance()
      .addHeader("Authorization", "Bearer API_TOKEN")
.execute(Request.Get("https://api.brightdata.com/zone/static/cities?country=us&pool_ip_type=dc"))
.returnContent().asString(); System.out.println(res) }
}

C#

using System;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;

public class Program {
  public static async Task Main() {
    var client = new HttpClient();
    var requestMessage = new HttpRequestMessage {
      Method = HttpMethod.Get,
RequestUri = new Uri("https://api.brightdata.com/zone/static/cities?country=us&pool_ip_type=dc"), Headers = { {"Authorization", "Bearer API_TOKEN"} } }; var response = await client.SendAsync(requestMessage); var responseString = await response.Content.ReadAsStringAsync(); Console.WriteLine(responseString); } }

Python

#!/usr/bin/env python
print('If you get error "ImportError: No module named requests", please install it:\n$ sudo pip install requests');
import requests

headers = {'Authorization': 'Bearer API_TOKEN'}
r = requests.get('https://api.brightdata.com/zone/static/cities?country=us&pool_ip_type=dc', headers=headers)
print(r.content)

Was this article helpful?