Skip to main content
Proxies let you route TinyFish Web Agent’s browser requests through specific countries. Use them to access geo-restricted content or avoid regional blocks.

How to Use

Add proxy_config to your request:
{
  url: "https://example.com",
  goal: "Extract product data",
  proxy_config: {
    enabled: true,
    country_code: "US"
  }
}

Supported Countries

CodeCountry
USUnited States
GBUnited Kingdom
CACanada
DEGermany
FRFrance
JPJapan
AUAustralia

When to Use Proxies

  • Accessing geo-restricted content
  • Avoiding regional IP blocks
  • Testing localized content
  • Combining with stealth mode for protected sites

Combining with Stealth Mode

For sites with bot protection and geo-restrictions, use both:
{
  url: "https://protected-site.com",
  goal: "Extract product data",
  browser_profile: "stealth",
  proxy_config: {
    enabled: true,
    country_code: "US"
  }
}
Learn more about browser profiles in the Browser Profiles page.