> ## 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.

# Create Task Errors

> Every error returned by /createTask.

# Create Task Errors

Errors returned synchronously by `POST /createTask` before the task is queued.

## 400 — Bad Request

| Message                 | Meaning                                       |
| ----------------------- | --------------------------------------------- |
| `Missing API key`       | No `apikey` header provided                   |
| `Missing siteurl`       | `siteurl` is required for all task types      |
| `Missing sitekey`       | `sitekey` required for hCaptcha and Turnstile |
| `Missing proxy`         | Proxy required for this task type             |
| `Missing datadomejsurl` | DataDome `datadomejsurl` is required          |
| `Missing ddjskey`       | DataDome `ddjskey` is required                |
| `Missing ddoptions`     | DataDome `ddoptions` is required              |

## 402 — Insufficient Balance

Your account balance is too low to solve this task type.

## 403 — Forbidden

| Message           | Meaning                           |
| ----------------- | --------------------------------- |
| `Invalid API key` | API key not found in the database |

## Example Error Response

```json theme={null}
{
  "status": "error",
  "message": "Missing sitekey"
}
```
