> For the complete documentation index, see [llms.txt](https://wiki.smhuda.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.smhuda.com/pentesting/application-security/api-security/curl-via-burpsuite.md).

# CURL via BurpSuite

## **Redirect Curl request to Burp Suite**

If you are using curl for some reason and want to redirect the request to the burp suite. This can be done by using control such as below:

```
┌──(root㉿kali)-[~]
└─# curl --insecure -x 127.0.0.1:8080 'POST' \
  'https://my-secure.api.test/notify' \
  -H 'accept: */*' \
  -d ''

```
