Basilisk (FaucetPay)
Basilisk is an icon-based CAPTCHA commonly used on FaucetPay and cryptocurrency faucet websites. It presents a grid of icons and requires the user to select the correct ones based on a prompt. The uCaptcha API solves Basilisk challenges and returns a verification token, with or without a proxy.
Supported Types
Section titled “Supported Types”| Type | Proxy | Description |
|---|---|---|
BasiliskTokenProxyLess | No | Solve without proxy (recommended) |
BasiliskToken | Yes | Solve using your 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 Basilisk challenge |
websiteKey | string | Yes | Basilisk / FaucetPay site key |
Proxy Parameters
Section titled “Proxy Parameters”Required when using the BasiliskToken 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": "BasiliskTokenProxyLess", "websiteURL": "https://example-faucet.com/claim", "websiteKey": "b7ab4a75-a8b7-3ea4-9b04-56c85d301ac3" }}Response
Section titled “Response”{ "errorId": 0, "taskId": "abc-123-def"}Solution Object
Section titled “Solution Object”{ "token": "faucetpay_verification_a1b2c3d4e5f6...token"}| Field | Type | Description |
|---|---|---|
token | string | The Basilisk verification token to submit with the form |
How to Use
Section titled “How to Use”Once you receive the token value from the solution:
- Form submission — Set the Basilisk token in the hidden captcha verification field and submit the faucet claim form.
- API request — Include the token in your POST request to the faucet’s claim endpoint.
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": "BasiliskTokenProxyLess", "websiteURL": "https://example-faucet.com/claim", "websiteKey": "b7ab4a75-a8b7-3ea4-9b04-56c85d301ac3" }})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: "BasiliskTokenProxyLess", websiteURL: "https://example-faucet.com/claim", websiteKey: "b7ab4a75-a8b7-3ea4-9b04-56c85d301ac3" } })}).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": "BasiliskTokenProxyLess", "websiteURL": "https://example-faucet.com/claim", "websiteKey": "b7ab4a75-a8b7-3ea4-9b04-56c85d301ac3" } }'
# 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”- CapMonster
- Multibot
Aliases
Section titled “Aliases”The following legacy type names are also accepted for backward compatibility:
FaucetPayTokenFaucetPayTokenProxyLessBasiliskTask