Getting Started
Learn how to quickly start using the Solvium API to solve various tasks and automate your processes.
Get your API key through our Bot
Use our library or API requests directly
Start solving captchas in your programs
Authentication
All API requests require authentication using your API key in the Authorization
header.
Authentication Format
Authorization: Bearer YOUR_API_KEY
Replace YOUR_API_KEY
with the token received from our bot.
Testing Requests
Let's solve a Turnstile captcha using the Solvium API. The process involves just two steps:
Create a Task
Send a request to create a task with the site key and URL where the captcha is located.
GET https://captcha.solvium.io/api/v1/task/turnstile?url=https://example.com&sitekey=SITEKEY
Check Task Status and Get Solution
Use the task ID from the previous request response to check the status and get the solution.
GET https://captcha.solvium.io/api/v1/task/status/YOUR_TASK_ID
Examples
Below are examples of solutions using different methods:
from solvium import Solvium
# Initialize the client with your API key
solvium = Solvium("YOUR_API_KEY")
# Solve a Turnstile captcha
solution = solvium.turnstile_sync(
sitekey="0x4AAAAAAA-3X4Nd7hf3mNGx",
pageurl="https://example.com"
)
print(f"Captcha solution: {solution}")
Using our Python library
Next Steps
Now that you've made your first request, you can move forward: