How to display only the response body of a cURL request?

To display only the response body of a cURL request, you can use the '-o' or '--output' option followed by a '-' sign as the filename. This will output the response body directly to the terminal.

Here is an example:

curl -so - <url>

Replace <url> with the actual URL you want to request. The output will be the response body without any additional information.