
Lucas Mitchell
Automation Engineer

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.
pip install capsolver
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()
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()
| 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
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
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.
Yes — CapSolver trains its behavioral model to mimic human traffic patterns, resulting in consistent 0.7–0.9.
data-sitekeyTypical solving time: 0.8 – 2.5 seconds
Enterprise tasks might take slightly longer.
Check these:
With Python + CapSolver, solving reCAPTCHA v3 Enterprise becomes simple, scalable, and extremely efficient.
Whether you're doing:
CapSolver helps you bypass Google reCAPTCHA v3 Enterprise with high success rate, high scores, and low cost.
👉 Try it now:
CapSolver Dashboard
Understand reCAPTCHA v3 score range (0.0 to 1.0), its meaning, and how to improve your score. Learn how to handle low scores and optimize user experience.

Facing "reCAPTCHA Invalid Site Key" or "invalid reCAPTCHA token" errors? Discover common causes, step-by-step fixes, and troubleshooting tips to resolve reCAPTCHA verification failed issues. Learn how to fix reCAPTCHA verification failed please try again.
