Get cURL command from Chrome Inspect Network HTTP URL


If you want to form a cURL command for a URL you visited on Google Chrome web browser, then its easy to do that, just follow the below steps,

  1. Open Google Chrome browser.
  2. Press F12 open Inspect, or press Ctrl + Shift + I
  3. Type in your URL in address bar example: https://code2care.org/tools/ and press enter.
  4. Now locate your URL -> Right Click on it -> Copy -> Copy as cURL (cmd) or (bash) based on if you are on Windows or macOS or Linix.
  5. Paste this cURL to cmd or bash and execute!
  6. It will get you the HTTP response.
Chrome URL to cuRL Example
Chrome URL to cuRL Example
GET Example:
curl 'https://code2care.org/tools/' \
  -H 'authority: code2care.org' \
  -H 'pragma: no-cache' \
  -H 'cache-control: no-cache' \
  -H 'upgrade-insecure-requests: 1' \
  -H 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) 
       AppleWebKit/537.36 (KHTML, like Gecko) 
       Chrome/85.0.4183.102 Safari/537.36' \
  -H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9' \
  -H 'sec-fetch-site: none' \
  -H 'sec-fetch-mode: navigate' \
  -H 'sec-fetch-user: ?1' \
  -H 'sec-fetch-dest: document' \
  -H 'accept-language: en-US,en;q=0.9' \
  --compressed






Author Info:

Rakesh (He/Him) has a Masters Degree in Computer Science with over 15+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap