Skip to main content

Data

sitekey
string
required
The Turnstile sitekey from the target website.Example: 0x4AAAAAABs37s-ih7Jepz0J
url
string
required
The URL of the page where the Turnstile challenge is located.Example: https://mune.rs/
URL must include a path. For example, https://mune.rs is invalid—use https://mune.rs/ instead.
proxy
string
Proxy to use for solving the challenge.
Optional: if this field is left empty, the API will switch to proxyless mode.
Format: <http|socks5>://[username:password@]host[:port]
Example: http://user:pass@192.168.1.1:8080
action
string
The action parameter passed to the Turnstile widget (if applicable).Example: register
cdata
string
Custom data parameter passed to the Turnstile widget (if applicable).Example: very_secure_cdata

Data Example

{
  "sitekey": "0x4AAAAAABs37s-ih7Jepz0J",
  "url": "https://mune.rs/",
  "proxy": "http://user:pass@192.168.1.1:8080",
  "action": "register",
  "cdata": "cdata"
}

Solution

token
string
required
The solved Turnstile token to be submitted with your request.Example: 0.....

Solution Example

{
  "token": "0.ABC123..."
}

The action and cdata parameters are optional and only required if the target website uses them in their Turnstile implementation.