> ## Documentation Index
> Fetch the complete documentation index at: https://hydrotuff-admin-mcp-fix-pages-3f076f6.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Result

> Poll for the result of a solving task.

# Get Result

`GET /getTaskResult?taskid=<id>&apikey=<key>`

Poll this endpoint until the status changes from `processing` to `solved` or `failed`.

## Query Parameters

| Parameter | Type   | Required | Description                      |
| --------- | ------ | -------- | -------------------------------- |
| `taskid`  | string | Yes      | Task ID from createTask response |
| `apikey`  | string | Yes      | Your API key                     |

You can also use `task_id` or `taskId` as parameter names.

## Response — Processing

```json theme={null}
{ "status": "processing" }
```

## Response — Solved

```json theme={null}
{
  "status": "solved",
  "token": "P0_eyJ2IjoiMi...",
  "tasktype": "HCaptchaCaptchaToken",
  "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36",
  "time": "12.5s"
}
```

## Response — Failed

```json theme={null}
{
  "status": "failed",
  "errorId": 1,
  "error": "SOLVE_TIMEOUT"
}
```

## Result Retention

Results are stored for 5 minutes after solving. After that, they are cleaned up.
