Bro, you might be hitting a rate limit or the API might need a user-agent header. Try:
```bash
curl -A "YourApp/1.0" https://api.example.com/data
```
Also, some APIs block plain curl—check their docs for required headers.
```bash
curl -A "YourApp/1.0" https://api.example.com/data
```
Also, some APIs block plain curl—check their docs for required headers.
