How to Solve reCAPTCHA v3 Enterprise with Python

Lucas Mitchell
Automation Engineer
25-Sep-2023

Google reCAPTCHA v3 Enterprise is one of the most advanced anti-bot systems used by enterprise-level websites.
It scores users with a risk value between 0.0 – 1.0, where higher scores indicate more human-like behavior.
Using the CapSolver API, you can reliably generate 0.7–0.9 scores for automation, scraping, SEO tasks, and enterprise workflows.
⚙️ Prerequisites
- Proxy (Optional, but recommended for stable 0.7–0.9 scores)
- Python installed
- CapSolver API Key
👉 Get one here: CapSolver Dashboard
🤖 Step 1: Install Required Packages
bash
pip install capsolver
👨💻 Step 2: Solve reCAPTCHA v3 Enterprise with Proxy (Recommended for High Scores)
python
import capsolver
from urllib.parse import urlparse
# Change these values
PROXY = "http://username:password@ip:port"
capsolver.api_key = "YourApiKey"
PAGE_URL = ""
PAGE_KEY = ""
PAGE_ACTION = ""
def solve_recaptcha_v3_enterprise(url, key, pageAction):
solution = capsolver.solve({
"type": "ReCaptchaV3EnterpriseTask",
"websiteURL": url,
"websiteKey": key,
"pageAction": pageAction,
"proxy": PROXY
})
return solution
def main():
print("Solving reCaptcha v3 Enterprise…")
solution = solve_recaptcha_v3_enterprise(PAGE_URL, PAGE_KEY, PAGE_ACTION)
print("Solution:", solution)
token = solution["gRecaptchaResponse"]
print("Token Solution:", token)
if __name__ == "__main__":
main()
👨💻 Step 3: Solve reCAPTCHA v3 Enterprise without Proxy
python
import capsolver
from urllib.parse import urlparse
# Change these values
capsolver.api_key = "YourApiKey"
PAGE_URL = ""
PAGE_KEY = ""
PAGE_ACTION = ""
def solve_recaptcha_v3_enterprise(url, key, pageAction):
solution = capsolver.solve({
"type": "ReCaptchaV3EnterpriseTaskProxyless",
"websiteURL": url,
"websiteKey": key,
"pageAction": pageAction
})
return solution
def main():
print("Solving reCaptcha v3 Enterprise…")
solution = solve_recaptcha_v3_enterprise(PAGE_URL, PAGE_KEY, PAGE_ACTION)
print("Solution:", solution)
token = solution["gRecaptchaResponse"]
print("Token Solution:", token)
if __name__ == "__main__":
main()
⚠️ Variables You Must Update
| Variable | Required | Description |
|---|---|---|
| PROXY | Only for ReCaptchaV3EnterpriseTask | Format: http://username:password@ip:port |
| capsolver.api_key | ✔ | Your API key from CapSolver |
| PAGE_URL | ✔ | Website where reCAPTCHA is located |
| PAGE_KEY | ✔ | websiteKey of the reCAPTCHA widget |
| PAGE_ACTION | ✔ | pageAction value (learn how to find it below) |
📘 Learn how to detect pageAction:
👉 https://www.capsolver.com/blog/All/how-to-identify-and-find-values-of-recaptchav3
🔍 Additional Resources
-
How to get 0.7–0.9 reCAPTCHA v3 scores consistently
https://www.capsolver.com/blog/reCAPTCHA/how-to-solve-reCAPTCHA-v3 -
Complete guide to bypassing reCAPTCHA v2/v3/Enterprise
https://www.capsolver.com/blog/reCAPTCHA/How-to-bypass-all-the-versions-reCAPTCHA-v2-v3 -
Identify which version of reCAPTCHA a site uses
https://www.capsolver.com/blog/All/identify-what-recaptcha-version-is-being-used
🙋♂️ FAQ – Frequently Asked Questions
1. Do I need a proxy to solve reCAPTCHA v3 Enterprise?
Not always.
But a proxy significantly improves the score (especially for 0.7–0.9).
Enterprise sites often rely on IP reputation, so a good residential proxy improves results.
2. Can CapSolver return stable high scores?
Yes — CapSolver trains its behavioral model to mimic human traffic patterns, resulting in consistent 0.7–0.9.
3. Where do I find the websiteKey & pageAction?
- websiteKey: inside the HTML tag
data-sitekey - pageAction: inside scripts or request payload
Guide: https://www.capsolver.com/blog/All/how-to-identify-and-find-values-of-recaptchav3
4. How fast is the solving time?
Typical solving time: 0.8 – 2.5 seconds
Enterprise tasks might take slightly longer.
5. What if my token is rejected?
Check these:
- Proxy reputation
- Correct pageAction
- Correct websiteKey
- Token not expired (valid for ~120 seconds)
✅ Conclusion
With Python + CapSolver, solving reCAPTCHA v3 Enterprise becomes simple, scalable, and extremely efficient.
Whether you're doing:
- SEO automation
- Web scraping
- Monitoring
- Enterprise integrations
- Data collection
CapSolver helps you bypass Google reCAPTCHA v3 Enterprise with high success rate, high scores, and low cost.
👉 Try it now:
CapSolver Dashboard
Compliance Disclaimer: The information provided on this blog is for informational purposes only. CapSolver is committed to compliance with all applicable laws and regulations. The use of the CapSolver network for illegal, fraudulent, or abusive activities is strictly prohibited and will be investigated. Our captcha-solving solutions enhance user experience while ensuring 100% compliance in helping solve captcha difficulties during public data crawling. We encourage responsible use of our services. For more information, please visit our Terms of Service and Privacy Policy.
More

Best reCAPTCHA Solver 2026 for Automation & Web Scraping
Discover the best reCAPTCHA solvers for automation and web scraping in 2026. Learn how they work, choose the right one, and stay ahead of bot detection.

Anh Tuan
14-Jan-2026

Top 5 Captcha Solvers for reCAPTCHA Recognition in 2026
Explore 2026's top 5 CAPTCHA solvers, including AI-driven CapSolver for fast reCAPTCHA recognition. Compare speed, pricing, and accuracy here

Lucas Mitchell
09-Jan-2026

Solving reCAPTCHA with AI Recognition in 2026
Explore how AI is transforming reCAPTCHA-solving, CapSolver's solutions, and the evolving landscape of CAPTCHA security in 2026.

Ethan Collins
08-Jan-2026

How to Identify and Obtain reCAPTCHA “s” Parameter Data
Learn to identify and obtain reCaptcha 's' data for effective captcha solving. Follow our step-by-step guide on using Capsolver's tools and techniques.

Ethan Collins
25-Nov-2025

How to Identify and Submit reCAPTCHA Extra Parameters (v2/v3/Enterprise) | CapSolver Guide
Learn how to detect and submit extra reCAPTCHA parameters using CapSolver to improve accuracy and solve complex challenges.

Rajinder Singh
10-Nov-2025

How to Solve reCAPTCHA When Scraping Search Results with Puppeteer
Master the art of Puppeteer web scraping by learning how to reliably solve reCAPTCHA v2 and v3. Discover the best puppeteer recaptcha solver techniques for large-scale data harvesting and SEO automation.

Lucas Mitchell
04-Nov-2025

