> For the complete documentation index, see [llms.txt](https://cheatsheet.mrw0l05zyn.cl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cheatsheet.mrw0l05zyn.cl/curl.md).

# cURL

Ejecutar cURL utilizando proxy.

```shell
curl <request> -x http://127.0.0.1:8080 -k
```

URL encode de parámetro.

```shell
value=$(echo "<parameter-value>" | jq -sRr @uri); curl -i -s "http://<target>/index.php?parameter=$value"
```
