Quick Start¶
Get recurl running in under 2 minutes.
Install¶
Verify Installation¶
You should see the curl version info (recurl uses a real curl engine).
Make Your First Request¶
# Basic request
recurl https://httpbin.org/get
# With debug output to see what's happening
recurl --recurl-debug https://httpbin.org/get
Set Up the curl Alias (Optional)¶
The installer will ask if you want to alias curl to recurl. If you said no but want to enable it later:
Now curl commands automatically use recurl:
Test Anti-Bot Bypass¶
Try a site that blocks regular curl:
# This might be blocked with regular curl
recurl --recurl-debug https://nowsecure.nl
# Output shows the escalation:
# [recurl] curl_engine: 403 Cloudflare
# [recurl] Escalating: impersonation (chrome)
# [recurl] curl_chrome: 200 OK
What's Next?¶
- Installation Details - Platform-specific options
- CLI Reference - All available flags
- How It Works - Under the hood