Void Solver

Login

Advanced Solver

Advanced captcha solving capabilities.

GETPOSThttps://api.voidsolver.tech/solve-advance

Creates an advanced captcha solving task. Supports both GET (query parameters) and POST (JSON body).

Query Parameters (GET) / JSON Body (POST)

FieldTypeDescription
urlStringThe URL of the page with the captcha. Required
sitekeyStringThe sitekey of the captcha.
user_agentStringUser-Agent string to use. Required
proxyStringProxy in format http://user:pass@ip:port.
rqdataStringOptional. Required for some captchas.
GET Request
curl -X GET "https://api.voidsolver.tech/solve-advance?url=https://example.com&sitekey=a9b5fb07-92ff-493f-86fe-352a2803b3df&proxy=http://user:[email protected]:8080&user_agent=Mozilla/5.0..." \
  -H "Authorization: Bearer YOUR_API_KEY"
POST Request
curl -X POST "https://api.voidsolver.tech/solve-advance" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com",
    "sitekey": "a9b5fb07-92ff-493f-86fe-352a2803b3df",
    "proxy": "http://user:[email protected]:8080",
    "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36",
    "rqdata": "optional_data"
  }'
200 OK
{
  "taskId": "1704460800000-abc123xyz"
}
GEThttps://api.voidsolver.tech/solve-advance/task/:taskid

Fetch the result of an advanced task.

Path Parameters

FieldTypeDescription
taskidStringID from solve-advance.
cURL
curl -X GET "https://api.voidsolver.tech/solve-advance/task/1704460800000-abc123xyz" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 OK (Success)
{
  "status": "success",
  "uuid": "P0_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9..."
}