Skip to content

cURL Export

Right-click any transaction → Copy as cURL to get a ready-to-run curl command on your clipboard — method, URL, headers, and body included.

What gets stripped

Content-Length and Accept-Encoding are deliberately left out — curl computes its own Content-Length from the body you give it, and setting Accept-Encoding yourself just means you get back compressed bytes curl won’t auto-decompress. Keeping the captured values verbatim would make the exported command silently wrong.

Good for

  • Sharing a specific request in a bug report or Slack thread without attaching a whole session
  • Quickly re-running one request from a terminal instead of reopening TonyProxy