> ## Documentation Index
> Fetch the complete documentation index at: https://docs.2extract.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Mobile Proxies: Quick Start

> A step-by-step example to get you started with our Mobile Proxies in minutes.

This guide assumes you have already [created your first Mobile Proxy](/getting-started/quick-start). 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**](https://2extract.com/app/proxies) dashboard to get your Host, Port, Username, and Password.

### Example: Getting an IP from a Specific ISP

Let's make a request through T-Mobile US. ISP targeting uses a numeric operator code and is mutually exclusive with geographic parameters — you cannot combine `-isp` with `-country`, `-state`, or `-city`.

<CodeGroup>
  ```bash cURL theme={null}
  # Replace with your actual credentials
  # -isp-310260 = T-Mobile US
  USERNAME="PROXY_USERNAME-isp-310260"
  PASSWORD="PROXY_PASSWORD"
  HOST="proxy.2extract.net:5555"

  curl "https://api.ipify.org?format=json" \
    --proxy "http://${USERNAME}:${PASSWORD}@${HOST}"
  ```

  ```python Python theme={null}
  import requests

  # Replace with your actual credentials
  # -isp-310260 = T-Mobile US
  proxy_details = {
      "username": "PROXY_USERNAME-isp-310260",
      "password": "PROXY_PASSWORD",
      "host": "proxy.2extract.net",
      "port": 5555,
  }

  proxies = {
      "http": f"http://{proxy_details['username']}:{proxy_details['password']}@{proxy_details['host']}:{proxy_details['port']}",
      "https": f"http://{proxy_details['username']}:{proxy_details['password']}@{proxy_details['host']}:{proxy_details['port']}",
  }

  response = requests.get('https://api.ipify.org?format=json', proxies=proxies)

  print(response.json())
  ```
</CodeGroup>

The response will be a JSON object containing an IP address from the T-Mobile US network.

<Check>
  You've now mastered the basics of mobile targeting! For a full list of parameters, check out our **[Geo-Targeting guide](/proxy-products/configuration/geo-targeting)**.
</Check>
