I am using Twitch's API to gather data for a web app I'm developing.
Per the documentation,
However, when I make the request in Postman, I don't see it.
They are in the header response section (I didn't screenshot the remaining half of the responses).
Am I looking in the wrong place?
I've looked in the Headers Response section of the API request I made. Additionally, I looked in the Headers Requests section in the console too.


The Headers Tab in Postman is request(input) headers not the response(output) headers data. It is located in the output area.
You can see (or assign) the response headers at
Testtab.Also
curl's -v option can see the headers from tesminal.Result
You can see or assign to variable at
TestTab's by scriptyou can assign global variable for specific key/value
Demo Server (emulate your Twitch's API server) by Python Flask.
Detail in here for install dependency and run it.