Get Result
GET /getTaskResult?taskid=<id>&apikey=<key>
Poll this endpoint until the status changes from processing to solved or failed.
Query Parameters
You can also use
task_id or taskId as parameter names.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Poll for the result of a solving task.
GET /getTaskResult?taskid=<id>&apikey=<key>
Poll this endpoint until the status changes from processing to solved or failed.
| Parameter | Type | Required | Description |
|---|---|---|---|
taskid | string | Yes | Task ID from createTask response |
apikey | string | Yes | Your API key |
task_id or taskId as parameter names.
{ "status": "processing" }
{
"status": "solved",
"token": "P0_eyJ2IjoiMi...",
"tasktype": "HCaptchaCaptchaToken",
"useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36",
"time": "12.5s"
}
{
"status": "failed",
"errorId": 1,
"error": "SOLVE_TIMEOUT"
}