cracker-logoCracker

Getting Started

One HTTP endpoint for Turnstile, reCAPTCHA, hCaptcha and Cloudflare Interstitial. Submit a task, receive a token — usually in under ten seconds.

How it works

1. Get a key

Message our Telegram bot — it hands you an API key in under a minute

2. Send a request

POST with sitekey and URL — you get a task_id back

3. Receive the solution

In a few seconds the token is ready — use it in your code

Your first request

Three steps from zero to a solved token. Same flow every client library wraps.

1

Get your API key

Message @solvium_crypto_bot on Telegram — instant key, free tier, no verification. Every request from here on carries the key in an Authorization header:

Authorization: Bearer YOUR_API_KEY

One key works for every captcha type, and keys don't expire.

2

Submit a task

Tell us which captcha and where it lives.

The API responds immediately with a task_id — solving runs in the background on our side.

JSON
{
  "task_id": "01959e02-08fd-7000-8cbe-f682a959b3c1"
}
3

Fetch the result

Poll the status endpoint with your task_id. Turnstile usually resolves in 6–10 seconds.

Once status === "done" the solved token is in the body — pass it to the target site and you're through.

JSON
{
  "status": "done",
  "token": "0.AbCdEf...-token-goes-here"
}

You're awesome

Or plug in a ready-made library

Three steps from above, compressed into a single call. Here's what it looks like:

Python
from solvium import Solvium
 
solvium = Solvium("YOUR_API_KEY")
 
solution = solvium.turnstile_sync(
    sitekey="0x4AAAAAAA-3X4Nd7hf3mNGx",
    pageurl="https://example.com",
)
 
print(f"Captcha solution: {solution}")

Via the official Python library — single call, no manual polling.

What's next

© 2026 Solvium. All rights reserved.