How to Add a Header to a curl Request

How to Add a Header to a curl Request

curl is a kind of nice utilities that is been round seemingly endlessly and has limitless use circumstances. As of late I discover myself using curl to batch download files and take a look at APIs. Typically my testing leads me to utilizing totally different HTTP headers in my requests.

So as to add a header to a curl request, use the -H flag:

curl -X 'GET' 
 'https://nft.api.cx.metamask.io/collections?chainId=1' 
 -H 'settle for: utility/json' 
 -H 'Model: 1'

You’ll be able to add a number of headers with a number of -H makes use of. Header format is normally [key]: [value].

  • Create Spinning Rays with CSS3: Revisited
  • CSS @supports

    Characteristic detection through JavaScript is a shopper facet finest follow and for all the suitable causes, however sadly that very same performance hasn’t been accessible inside CSS.  What we find yourself doing is repeating the identical properties a number of instances with every browser prefix.  Yuck.  One other factor we…

Leave a Reply