Perform OS Targeting
Route your requests through proxy IPs associated with devices running a specific operating system by adding the -os-<operating_system> parameter to your proxy username.
How OS Targeting Works
Append -os-<operating_system> to your proxy username to target devices running a specific operating system.
For example, -os-ios- routes traffic through iOS devices.
Supported Operating Systems
The following operating systems are supported:
| Operating System | Username Value |
|---|---|
| Windows | windows |
| Android | android |
| iOS | ios |
| macOS | mac |
Request
curl --request GET \
-x "http://proxy.geonode.io:10009" \
--user "geonode_username-os-ios-lifetime-30-session-randomIOS:YOUR_PASSWORD" \
--url "http://ip-api.com/json"Example
curl -x proxy.geonode.io:10009 \
-U geonode_username-os-ios-lifetime-30-session-randomIOS:YOUR_PASSWORD \
http://ip-api.com/jsonIn this example, the operating system target is specified in the proxy username:
geonode_username-os-ios-lifetime-30-session-randomIOSThe important part is:
-os-ios-You can replace ios with any of the supported operating systems:
-os-windows-
-os-android-
-os-ios-
-os-mac-Response
200 Success
Returns information about the IP address assigned to your proxy connection.
Response Fields
| Field | Type | Description |
|---|---|---|
status | string | Status of the request. |
country | string | Country of the proxy IP address. |
countryCode | string | Two-letter country code. |
region | string | Region or state code. |
regionName | string | Full name of the region or state. |
city | string | City associated with the proxy IP. |
zip | string | ZIP or postal code. |
lat | number | Latitude of the proxy IP. |
lon | number | Longitude of the proxy IP. |
timezone | string | Time zone of the proxy IP. |
isp | string | Internet service provider. |
org | string | Organization associated with the IP address. |
as | string | Autonomous System (AS) information. |
query | string | Public IP address returned by the proxy. |
Example Response
{
"status": "success",
"country": "United States",
"countryCode": "US",
"region": "PA",
"regionName": "Pennsylvania",
"city": "Philadelphia",
"zip": "19133",
"lat": 39.9934,
"lon": -75.1425,
"timezone": "America/New_York",
"isp": "T-Mobile USA, Inc.",
"org": "T-Mobile USA, Inc.",
"as": "AS21928 T-Mobile USA, Inc.",
"query": "172.56.216.58"
}