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

# Making Requests

> Learn how to make requests using AntsData's Mobile Proxies.

To send your first request, you can run the following curl command and replace the username and password with yours. The target website <Tooltip tip="IP data provider">IPinfo.io</Tooltip> will return information about your current IP address.

```bash cURL theme={null}
curl -U "customer-<username>:<password>" -x "proxy.antsdata.com:30001" "https://ipinfo.io"
```

With the whitelist setting, you can simply use the following command:

```bash cURL theme={null}
curl -x "proxy.antsdata.com:30001" "https://ipinfo.io"
```

<Accordion title="Expected response">
  ```json JSON theme={null}
  {
  "ip": "178.178.118.52",
  "city": "Kursk",
  "region": "Kursk Oblast",
  "country": "RU",
  "loc": "51.7373,36.1874",
  "org": "AS31133 PJSC MegaFon",
  "postal": "305000",
  "timezone": "Europe/Moscow",
  "readme": "https://ipinfo.io/missingauth"
  }
  ```
</Accordion>

<Tip>If you are experiencing difficulty receiving the expected response, please refer to our [Troubleshooting Documentation](/Troubleshooting/Proxy_Error_Code).</Tip>
