Help: Adding a HTTP to Postman

So I have a HTTP request, which I can use in my company portal but want to try in Postman. It is set up like the below, but I do not know how to setup in Postman:

GET https://awebaddress-api.net/data/details/?queryparameters=varioustext HTTP/1.1
Host: awebaddress-api.net
Ocp-Apim-Subscription-Key: 12345678901234567890
Authorization: Text dmultiplecharacters==

Getting a little lost on where the host header is inserted in Postman. But ideally instructions on insert the complete thing would be ideal. I am new to Postman

Hey @hld4life,

Welcome to the community!! :star:

Those details would go into these places on the app:

An easy method you can use to add this to Postman is to use the Import feature. I’ve converted your request into a curl command so it will auto-populate the areas where those details go:

curl -H 'Ocp-Apim-Subscription-Key: 12345678901234567890' -H 'Authorization: Text dmultiplecharacters==' 'https://awebaddress-api.net/data/details/?queryparameters=varioustext'

Just paste the command into the area shown in the .gif :slight_smile: