Skip to main content
All CollectionsMobile Proxies
Get a list of available countries for mobile proxies
Get a list of available countries for mobile proxies
Proxyrack avatar
Written by Proxyrack
Updated over 3 weeks ago

You can use the Proxyrack API to retrieve a list of the available countries to geo-target for any service. In order to do this, you will need to make a request through your proxies to "api.proxyrack.net/countries".

You can also see the number of IPs available in each country. In order to see the proxy count for each country in the API response, you will need to make a request through your proxies to "api.proxyrack.net/countries/count".

Please note that cURL is used below as an example. You do not need to use cURL in order to make a request to this API endpoint. You can do this wherever you have configured your proxies, such as in a browser, code, etc.

You can get the list of available countries and the number of mobile IPs by using the following cURL commands:

curl -x mobile.residential.proxyrack.net:9000 -U 
username:password "api.proxyrack.net/v1-beta/countries"

curl -x mobile.residential.proxyrack.net:10000 -U
username:password "api.proxyrack.net/v1-beta/countries?includeCount=true"

This command will query the Proxyrack API and return the countries where mobile proxies are available, along with the number of IPs in each country. Make sure to replace username and password with your actual credentials.

Additionally, you can specify the geolocation database you would like to use by making a request to the following API endpoint: "api.proxyrack.net/v1-beta/countries?includeCount=true&geoDb={database name}". For example, to use ipinfo.io as your geolocation database, the API endpoint would be "http://api.proxyrack.net/v1-beta/countries?includeCount=true&geoDb=ipinfo".

Examples:

  • To get the list of countries:

curl -x mobile.residential.proxyrack.net:9000 -U 
username:password api.proxyrack.net/countries

Result:

[
"VN",
"SS",
"HK",
"SD",
"AE",
"AU",
"KG",
"LT",
"LB",
"KH",
"QA",
"NO",

  • To get the proxy count per country:

curl -x mobile.residential.proxyrack.net:9000 -U 
username:password api.proxyrack.net/countries/count

Result:

{
"AE": {
"proxyCount": 6
},
"AF": {
"proxyCount": 4
},
"AL": {
"proxyCount": 4
},
"AU": {
"proxyCount": 7
},
"BD": {
"proxyCount": 233
},
"BF": {
"proxyCount": 1

Did this answer your question?