Videoanleitung hier.
Sie können die Proxyrack-API verwenden, um eine Liste der verfügbaren Länder für das Geotargeting für jeden Dienst abzurufen. Dazu müssen Sie eine Anfrage über Ihre Proxys an "api.proxyrack.net/v1-beta/countries" stellen.
Sie können auch die Anzahl der in jedem Land verfügbaren IPs sehen. Um die Anzahl der Proxys für jedes Land in der API-Antwort zu sehen, müssen Sie eine Anfrage über Ihre Proxys an "api.proxyrack.net/v1-beta/countries?includeCount=true" stellen.
Zusätzlich können Sie die Geolokalisierungsdatenbank angeben, die Sie verwenden möchten, indem Sie eine Anfrage an den folgenden API-Endpunkt stellen: "api.proxyrack.net/v1-beta/countries?includeCount=true&geoDb={Datenbankname}". Zum Beispiel, um ipinfo.io als Ihre Geolokalisierungsdatenbank zu verwenden, wäre der API-Endpunkt "http://api.proxyrack.net/v1-beta/countries?includeCount=true&geoDb=ipinfo".
Bitte beachten Sie, dass cURL unten als Beispiel verwendet wird. Sie müssen cURL nicht verwenden, um eine Anfrage an diesen API-Endpunkt zu stellen. Sie können dies überall dort tun, wo Sie Ihre Proxys konfiguriert haben, z. B. in einem Browser, Code usw.
Beispiele
Unbegrenztes Wohnen:
Bitte beachten: Unbegrenzte Wohnproxies sind nicht mehr käuflich zu erwerben. Bestehende Abonnements funktionieren jedoch weiterhin.
curl -x unmetered.residential.proxyrack.net:10000 -U benutzername:passwort api.proxyrack.net/v1-beta/countries
curl -x unmetered.residential.proxyrack.net:10000 -U benutzername:passwort "api.proxyrack.net/v1-beta/countries/?includeCount=true"
Premium Wohnanschluss:
curl -x premium.residential.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/countries
curl -x premium.residential.proxyrack.net:10000 -U username:password "api.proxyrack.net/v1-beta/countries?includeCount=true"
Private Unbegrenzte Wohnanschluss:
curl -x private.residential.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/countries
curl -x private.residential.proxyrack.net:10000 -U username:password "api.proxyrack.net/v1-beta/countries?includeCount=true"
USA Rotierendes Rechenzentrum:
curl -x usa.rotating.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/countries
curl -x usa.rotating.proxyrack.net:10000 -U username:password "api.proxyrack.net/v1-beta/countries?includeCount=true"
Globales Rotierendes Rechenzentrum:
curl -x global.rotating.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/countries
curl -x global.rotating.proxyrack.net:10000 -U username:password "api.proxyrack.net/v1-beta/countries?includeCount=true"
Statisches USA Rechenzentrum:
curl -x usa.static.proxyrack.net:10000 -U username:password api.proxyrack.net/v1-beta/countries
Ergebnis:
{ "AU": {}, "BZ": {}, "CZ": {}, "DE": {}, "FR": {}, "GB": {}, "IN": {}, "NL": {}, "SC": {}, "SE": {}, "US": {}}
Ergebnis (mit "?includeCount=true"):
{ "AU": { "proxyCount": 508 }, "BZ": { "proxyCount": 1012 }, "CZ": { "proxyCount": 1778 }, "DE": { "proxyCount": 1016 }, "FR": { "proxyCount": 1267 }, "GB": { "proxyCount": 3044 }, "IN": { "proxyCount": 254 }, "NL": { "proxyCount": 254 }, "SC": { "proxyCount": 1 }, "SE": { "proxyCount": 254 }, "US": { "proxyCount": 7092 }}