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

# Making Requests

> Learn how to make requests using GloryCloud's Static Residential Proxy.

To send your first request, you can run the following curl command and replace the username, password and ip\_address 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 "<ip_address>:62000" "https://ipinfo.io"
```

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

```bash cURL theme={null}
curl -x "<ip_address>:62000" "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](https://docs.glorycloud.com/Troubleshooting/Http_Response_Code).
</Tip>
