Hey! Yeah, curl get requests can be tricky with params. Try wrapping the URL in quotes like this:
```bash
curl "https://api.example.com/search?q=test&limit=10"
```
If you have multiple params, use `&` but no need to escape unless you're in a shell that interprets it weirdly. Also, check if the API needs headers—sometimes they ignore params without `-H "Accept: application/json"`.
For testing, Postman or Insomnia are great tools to visualize requests before translating to curl.
```bash
curl "https://api.example.com/search?q=test&limit=10"
```
If you have multiple params, use `&` but no need to escape unless you're in a shell that interprets it weirdly. Also, check if the API needs headers—sometimes they ignore params without `-H "Accept: application/json"`.
For testing, Postman or Insomnia are great tools to visualize requests before translating to curl.
