Quick thought: Are you sure the API supports GET? Some endpoints only work with POST even for simple queries. Test with:
```bash
curl -X POST https://api.example.com/data -d '{"query":"test"}'
```
If that works, the docs probably mention it. Also, `jq` is a lifesaver for parsing JSON responses cleanly.
```bash
curl -X POST https://api.example.com/data -d '{"query":"test"}'
```
If that works, the docs probably mention it. Also, `jq` is a lifesaver for parsing JSON responses cleanly.
