does get have headers? Yes, and it’s super useful!
For example, APIs often require an `Authorization` header even for GET requests.
If you’re using Python, the `requests` library makes it easy:
```
requests.get(url, headers={'key': 'value'})
```
Anyone saying otherwise is probably thinking of URL params vs headers.
For example, APIs often require an `Authorization` header even for GET requests.
If you’re using Python, the `requests` library makes it easy:
```
requests.get(url, headers={'key': 'value'})
```
Anyone saying otherwise is probably thinking of URL params vs headers.
