Turnstile
Cloudflare Turnstile is a user-friendly CAPTCHA alternative designed as a drop-in replacement for reCAPTCHA. It runs automatically in the background without requiring users to solve visual puzzles. Turnstile is increasingly adopted across Cloudflare-protected sites and is also available as a standalone widget for any website.
Supported Types
Section titled “Supported Types”| Type | Proxy | Description |
|---|---|---|
TurnstileTokenProxyLess | No | Standard (recommended) |
TurnstileToken | Yes | With proxy |
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | Task type from the table above |
websiteURL | string | Yes | URL of the page with the Turnstile widget |
websiteKey | string | Yes | Turnstile site key |
action | string | No | Custom action parameter |
cData | string | No | Custom data parameter |
Proxy Parameters
Section titled “Proxy Parameters”Required when using the TurnstileToken proxy task type.
| Parameter | Type | Required | Description |
|---|---|---|---|
proxyType | string | Yes | http, socks4, or socks5 |
proxyAddress | string | Yes | Proxy IP or hostname |
proxyPort | integer | Yes | Proxy port |
proxyLogin | string | No | Proxy username |
proxyPassword | string | No | Proxy password |
Create Task
Section titled “Create Task”Request
Section titled “Request”{ "clientKey": "YOUR_API_KEY", "task": { "type": "TurnstileTokenProxyLess", "websiteURL": "https://example.com/login", "websiteKey": "0x4AAAAAAABS7vwvV6VFfMcD" }}Response
Section titled “Response”{ "errorId": 0, "taskId": "abc-123-def"}Solution Object
Section titled “Solution Object”{ "token": "0.erxJjsRkUHZCAQ..."}| Field | Type | Description |
|---|---|---|
token | string | Turnstile response token |
How to Use
Section titled “How to Use”Submit the token as the cf-turnstile-response form field value. Depending on the site implementation, you may also need to set the g-recaptcha-response field (some sites use this name for backward compatibility).
- Form submission — Set the hidden
cf-turnstile-responseinput field and submit the form. - JavaScript callback — Pass the token to the Turnstile callback function registered during widget rendering.
- API request — Include the token in the request payload if the site validates Turnstile server-side via an API call.
Code Examples
Section titled “Code Examples”Python
Section titled “Python”import requestsimport time
API_KEY = "YOUR_API_KEY"
# Create taskresponse = requests.post("https://api.ucaptcha.net/createTask", json={ "clientKey": API_KEY, "task": { "type": "TurnstileTokenProxyLess", "websiteURL": "https://example.com/login", "websiteKey": "0x4AAAAAAABS7vwvV6VFfMcD" }})task_id = response.json()["taskId"]
# Poll for resultwhile True: result = requests.post("https://api.ucaptcha.net/getTaskResult", json={ "clientKey": API_KEY, "taskId": task_id }).json()
if result["status"] == "ready": token = result["solution"]["token"] print("Token:", token) break elif result["status"] == "failed": print("Error:", result.get("errorDescription")) break
time.sleep(5)JavaScript
Section titled “JavaScript”const API_KEY = "YOUR_API_KEY";
const { taskId } = await fetch("https://api.ucaptcha.net/createTask", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ clientKey: API_KEY, task: { type: "TurnstileTokenProxyLess", websiteURL: "https://example.com/login", websiteKey: "0x4AAAAAAABS7vwvV6VFfMcD" } })}).then(r => r.json());
while (true) { const result = await fetch("https://api.ucaptcha.net/getTaskResult", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ clientKey: API_KEY, taskId }) }).then(r => r.json());
if (result.status === "ready") { console.log("Token:", result.solution.token); break; } else if (result.status === "failed") { console.error("Error:", result.errorDescription); break; }
await new Promise(r => setTimeout(r, 5000));}# Create taskcurl -X POST https://api.ucaptcha.net/createTask \ -H "Content-Type: application/json" \ -d '{ "clientKey": "YOUR_API_KEY", "task": { "type": "TurnstileTokenProxyLess", "websiteURL": "https://example.com/login", "websiteKey": "0x4AAAAAAABS7vwvV6VFfMcD" } }'
# Poll for result (replace TASK_ID with the taskId from above)curl -X POST https://api.ucaptcha.net/getTaskResult \ -H "Content-Type: application/json" \ -d '{ "clientKey": "YOUR_API_KEY", "taskId": "TASK_ID" }'Provider Coverage
Section titled “Provider Coverage”- 2Captcha
- CapSolver
- Anti-Captcha
- CapMonster
- DeathByCaptcha
- RiskByPass
- 2Crawler
- Multibot
Aliases
Section titled “Aliases”The following legacy type names are also accepted for backward compatibility:
AntiTurnstileTaskAntiTurnstileTaskProxyLessTurnstileTaskTurnstileTaskProxyless