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.
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.
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.
{
"task_id": "01959e02-08fd-7000-8cbe-f682a959b3c1"
}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.
{
"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:
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.