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

# Smartphone cURL Test

> Test the proxy connection using cURL commands on a mobile device.

For this test, we suggest **Termux**, which is a powerful terminal emulator that provides a full Linux environment on mobile devices. It allows running the `cURL` command-line directly from a mobile device. Termux is supported on Android and iOS devices and enables advanced networking tasks typically performed on desktop systems.

## Why is `cURL` useful?

`cURL` is a command-line tool used to send requests. It is commonly used to verify proxy connectivity and test network responses. When used with proxies, it routes traffic through a specified IP address, which helps test different geographic locations and diagnose connectivity issues. It also returns clear response codes and IP information for troubleshooting and verification purposes. A successful proxy connection accompanied by valid IP response data indicates that the proxy is operational.

***

## Termux Setup

**Step 1.** Download Termux from the [**Play Store**](https://play.google.com/store/apps/details?id=com.termux\&hl=en_GB) (Android) or [**App Store**](https://apps.apple.com/us/app/termux/id6738933789) (iOS) on your device.

**Step 2.** Open the application and enter: `pkg install curl`.

**Step 3.** Tap **new line** on your keyboard.

**Step 4.** Enter the `cURL` command using your own proxy credentials:

<CodeGroup>
  ```shellscript cURL theme={null}
  curl -U 'USERNAME:PASSWORD' -x gate.decodo.com:7000 https://ip.decodo.com/
  ```
</CodeGroup>

<Note>
  * Don't forget to use the endpoint and port corresponding to the specific proxy type you are using.
  * Learn how to find **proxy details** in your dashboard for each proxy type [**here**](https://help.decodo.com/docs/proxy-quick-start-guides).
</Note>

**Step 5.** Tap **new line** on your keyboard.

***

## Troubleshooting

If you have encountered any errors, you can check the response codes [**here**](https://help.decodo.com/docs/https-error-codes).

***

<Columns cols={2}>
  <Card title="Support" href="https://direct.lc.chat/12092754" cta="Let's chat!">
    Need help or just want to say hello? Our support is available 24/7. \
    You can also reach us anytime via email at [support@decodo.com](mailto:support@decodo.com).
  </Card>

  <Card title="Feedback" href="mailto:feedback@decodo.com" cta="Share feedback">
    Can't find what you're looking for? Request an article! \
    Have feedback? Share your thoughts on how we can improve.
  </Card>
</Columns>
