> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/curl/use-proxy-server-in-curl.md).

# Use Proxy Server in cURL

We can specify a proxy server in cURL using the `-x` or `--proxy` argument.

## Example

```bash
curl --silent --proxy http://100.64.0.5:8888 https://ipv4.devjugal.com
```

***Source:*** [***StackOverFlow***](https://stackoverflow.com/a/9445516)
