Custom Headers

If you would like to use your own custom headers (user agents, cookies, etc.) when making a request to the website, simply set keep_headers=true and send the API the headers you want to use. The API will then use these headers when sending requests to the website.

Note: Only use this feature if you need to send custom headers to retrieve specific results from the website. Within the API we have a sophisticated header management system designed to increase success rates and performance on difficult sites. When you send your own custom headers you override our header system, which oftentimes lowers your success rates. Unless you absolutely need to send custom headers to get the data you need, we advise that you don’t use this functionality.

If you need to get results for mobile devices, use the device_type parameter to set the user-agent header for your request, instead of setting your own.

  • API REQUEST

curl --header "X-MyHeader: 123" "http://api.scraperapi.com/?api_key=APIKEY&url=http://httpbin.org/anything&keep_headers=true"
  • PROXY MODE

curl --header "X-MyHeader: 123" \-x "http://scraperapi.keep_headers=true:APIKEY@proxy-server.scraperapi.com:8001" -k "http://httpbin.org/anything"

Last updated