ProductsIntegrationsResourcesDocumentationPricing
Start Now

© 2026 CapSolver. All rights reserved.

CONTACT US

Slack: lola@capsolver.com

Products

  • reCAPTCHA v2
  • reCAPTCHA v3
  • Cloudflare Turnstile
  • Cloudflare Challenge
  • AWS WAF
  • Browser Extension
  • Many more CAPTCHA types

Integrations

  • Selenium
  • Playwright
  • Puppeteer
  • n8n
  • Partners
  • View All Integrations

Resources

  • Referral System
  • Documentation
  • API Reference
  • Blog
  • FAQs
  • Glossary
  • Status

Legal

  • Terms & Conditions
  • Privacy Policy
  • Refund Policy
  • Don't Sell My Info
Blog/reCAPTCHA/How to Solve reCAPTCHA v3 Enterprise with Python
Sep25, 2023

How to Solve reCAPTCHA v3 Enterprise with Python

Lucas Mitchell

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.


⚙️ 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 Copy
pip install capsolver

👨‍💻 Step 2: Solve reCAPTCHA v3 Enterprise with Proxy (Recommended for High Scores)

python Copy
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 Copy
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

More

reCAPTCHAApr 16, 2026

reCAPTCHA Score Explained: Range, Meaning, and How to Improve It

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.

Rajinder Singh
Rajinder Singh
reCAPTCHAApr 16, 2026

reCAPTCHA Invalid Site Key or Token? Causes & Fix Guide

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.

Contents

Aloísio Vítor
Aloísio Vítor
reCAPTCHAApr 15, 2026

reCAPTCHA Verification Failed? How to Fix "Please Try Again" Errors

Fix reCAPTCHA verification failed errors fast. Step-by-step manual fixes for users and a Python API guide for developers using CapSolver. Covers v2, v3, and Enterprise.

Adélia Cruz
Adélia Cruz
reCAPTCHAApr 15, 2026

reCAPTCHA v2 vs v3: Key Differences Every Developer Should Know

Understand the difference between reCAPTCHA v2 and v3 — how each works, when to use them, and how automated workflows handle both. A clear, technical comparison for developers.

Nikolai Smirnov
Nikolai Smirnov