CloudFlare CAPTCHA Solving Service
Supports all CloudFlare verification types including Cookies mode and Turnstile CAPTCHA mode with efficient and fast professional solutions
π Get Free API Key
Register NoCaptcha.io Now β
Professional CAPTCHA Solutions | High Success Rate | Fast Response | 24/7 Support
Register NoCaptcha.io Now β
Professional CAPTCHA Solutions | High Success Rate | Fast Response | 24/7 Support
π₯ Product Advantages
Why Choose Our CloudFlare Solution
- π‘οΈ Comprehensive Support: Supports all CloudFlare verification types (Cookies mode, Turnstile CAPTCHA)
- β‘ Efficient Breaking: Professional algorithms quickly bypass CloudFlare protection
- π― High Success Rate: Provides optimal solutions for different verification types
- π§ Flexible Configuration: Supports various parameter configurations to adapt to different website needs
π Service Information
Important Notice
Online service is for testing only. For stable/high-volume/dedicated/monthly/discount plans, please contact administrators
Online service is for testing only. For stable/high-volume/dedicated/monthly/discount plans, please contact administrators
π Verification Type Description
Type 1: Cookies Mode
Characteristics: Normal mode returns cookies like cf_clearance
, __cf_bm
, etc.
- When no redirect page appears but
cf_clearance
exists, you can setalpha=true
for invisible verification - Proxy is required

Type 2: Turnstile CAPTCHA Mode
Characteristics: CAPTCHA style, returns cf_turnstile-response
- Credits consumption: 300 points (150 points with proxy)
- Usually embedded in login forms with verification parameters like
captcha_api_key
- Parameter values start with
0.
- Proxy is optional

π Parameter Finding Methods
Cookies Type
Simply input the target page URL that triggers verification
Turnstile Type
Requires additional sitekey
parameter. Finding method shown in the image below:

β οΈ Important Notes
Cookies Mode Considerations
- Must maintain consistent IP and User-Agent
- Validates TLS fingerprint, please use TLS request libraries or TLS forwarding services
Turnstile Mode Considerations
- Results can usually be used directly
- Using proxy only costs 150 points
π API Information
Request URL (POST)
Version Type | API Endpoint |
---|---|
Universal | http://api.nocaptcha.io/api/wanda/cloudflare/universal |
Request Headers
Parameter | Description | Required |
---|---|---|
User-Token |
User token, get from dashboard | β |
Content-Type |
application/json |
β |
Developer-Id |
Developer ID for developer users, string from invite link (e.g., xxx/register?c=abcdef, then abcdef is Developer ID) | β |
POST Parameters (JSON Format)
Parameter | Type | Description | Required |
---|---|---|---|
href |
String | Target page URL that triggers verification | β |
proxy |
String | Proxy address (required for Cookies mode, optional for Turnstile) | Conditional |
sitekey |
String | Required for Turnstile type (costs 300 points) | β |
explicit |
Boolean | For Turnstile type, check if api.js link has render=explicit parameter | β |
action |
String | Action value passed in Turnstile type | β |
cdata |
String | For Turnstile type, pass only if cdata exists in turnstile.render parameters | β |
user_agent |
String | Custom request header (don't pass if returns "not supported") | β |
alpha |
Boolean | Whether it's invisible cookies verification | β |
π Action/Cdata Parameter Finding (Advanced Feature)
When verification type is turnstile
and render=explicit
parameter is found in the target website's *turnstile/v0/api.js
link:
Step 1: Set explicit=true
Step 2: Find action and cdata parameters
- Open F12 and search for
window.turnstile.render

- Set breakpoint there, clear cookie cache and refresh page
- Check the
action
value and fill it in

π Request Examples
Cookies Type Example
{
"href": "https://nowsecure.nl/",
"proxy": "usr:pwd@ip:port",
"alpha": true
}
Turnstile Type Example
{
"href": "https://visa.vfsglobal.com/chn/zh/deu/login",
"proxy": "usr:pwd@ip:port",
"sitekey": "0x4AAAAAAACYaM3U_Dz-4DN1"
}
Turnstile Action Type Example
{
"href": "https://app.ogcom.xyz/signup?step=first",
"proxy": "usr:pwd@ip:port",
"sitekey": "0x4AAAAAAASTIy9n6lEJjrIE",
"action": "verification_code",
"explicit": true
}
π€ Response Format
Parameter | Type | Description |
---|---|---|
status |
Integer |
Call status: 1=success, 0=failure |
msg |
String |
Call result description |
id |
String |
Unique request ID (for record query) |
data.cookies |
String |
Cookies returned after successful verification |
data.token |
String |
Token returned after successful verification (for Turnstile) |
cost |
String |
Verification time (milliseconds) |
Response Example
{
"cost": "3380.01ms",
"data": {
"token": "xxx",
"cookies": "xxx=xxx;"
},
"id": "bc174976-81b2-418e-a6e3-9f7c0bbd41ae",
"msg": "Verification successful",
"status": 1
}
π» Code Examples
Python Examples
Install Dependencies
pip install -U pynocaptcha -i https://pypi.python.org/simple
Basic Usage
from pynocaptcha import CloudFlareCracker
# CloudFlare CAPTCHA solving
cracker = CloudFlareCracker(
user_token="your_user_token_here",
developer_id="hqLmMS", # Developer ID
sitekey="0x4AAAAAAACYaM3U_Dz-4DN1",
href="https://visa.vfsglobal.com/chn/zh/deu/login",
proxy="usr:pwd@ip:port",
debug=True,
)
result = cracker.crack()
print(f"Result: {result}")
π― Related Services
Need Technical Support?
Contact us for professional technical support
Contact us for professional technical support