Void Solver

Login

Standard Solver

Basic image captcha solving and standard challenges.

POSThttps://api.voidsolver.tech/createtask

Creates a captcha solving task. Returns a taskId which is used to poll for the result.

Body Parameters

FieldTypeDescription
site_urlStringThe URL of the page with the captcha.
site_keyStringThe sitekey of the captcha.
proxyStringProxy in format http://user:pass@ip:port.
rqdataStringOptional. Required for some captchas (e.g. hCaptcha Enterprise).
pow_typeStringOptional. Expectations: hsw or hsl. Defaults to hsw.
curl -X POST https://api.voidsolver.tech/createtask \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "site_url": "https://example.com",
    "site_key": "a9b5fb07-92ff-493f-86fe-352a2803b3df",
    "proxy": "http://user:[email protected]:8080",
    "rqdata": "optional-rqdata-value",
    "pow_type": "hsw"
}'
200 OK
{
  "taskId": "1704460800000-abc123xyz"
}
GEThttps://api.voidsolver.tech/gettaskresult

Fetch the result of a task using the taskId obtained from creating a task.

Query Parameters

FieldTypeDescription
taskidStringID from createtask.
cURL
curl -X GET "https://api.voidsolver.tech/gettaskresult?taskid=1704460800000-abc123xyz" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 OK (Success)
{
  "externalTaskId": null,
  "_id": "690e12cf300c37a72652b6ec",
  "status": "success",
  "solvedToken": "P1_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...",
  "solveTime": 9.18,
  "taskId": "1762529999576-dyx46ftoj",
  "site": "discord.com",
  "sitekey": "b2b02ab5-7dae-4d6f-830e-7b55634c888b",
  "user": "68f51b383e995714c5b7db00",
  "createdAt": "2025-11-07T15:39:59.577Z",
  "updatedAt": "2025-11-07T15:40:22.731Z",
  "__v": 0
}