If you’re lazy like me, use `curl get` with `--silent` to skip the progress junk:
```bash
curl -s https://api.example.com/data
```
Add `| jq` if the response is JSON.
For alternatives, `wget` works too, but it’s not as flexible.
```bash
curl -s https://api.example.com/data
```
Add `| jq` if the response is JSON.
For alternatives, `wget` works too, but it’s not as flexible.
