Skip to main content
Coming Soon — Mobile Proxies are currently in testing and not yet available to the public. This documentation is a preview for when the feature launches.
This guide assumes you have already created your first Mobile Proxy. The process is very similar to using Residential proxies, but with additional targeting capabilities.

Your Connection Credentials

Navigate to your proxy’s settings page in the My Proxies dashboard to get your Host, Port, Username, and Password.

Example: Getting an IP from a Specific ISP in the US

Let’s make a request through a specific mobile ISP in the United States. We’ll do this by adding the -country-us and -isp-tmobile parameters to your username.
# Replace with your actual credentials
USERNAME="PROXY_USERNAME-country-us-isp-tmobile"
PASSWORD="PROXY_PASSWORD"
HOST="proxy.2extract.net:5555"

curl "https://api.ipify.org?format=json" \
  --proxy "http://${USERNAME}:${PASSWORD}@${HOST}"
The response will be a JSON object containing an IP address from the selected ISP’s network in the US.
You’ve now mastered the basics of mobile targeting! For a full list of parameters, check out our Geo-Targeting guide.