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

# Introduction

> HydroSolve is a developer API for solving hCaptcha, Cloudflare Turnstile, AWS WAF, and DataDome challenges.

# HydroSolve

Fast, reliable captcha-solving API. Submit a task, poll for results, get a token.

## Base URL

```text theme={null}
https://api.hydrosolves.gay
```

## Supported Task Types

| Task Type                   | Price / Solve |
| --------------------------- | ------------- |
| `HCaptchaCaptchaToken`      | \$0.0015      |
| `HCaptchaEnterpriseToken`   | \$0.0015      |
| `TurnstileCaptcha`          | \$0.0006      |
| `TurnstileCaptchaProxyless` | \$0.0006      |
| `CloudflareJsdCookie`       | \$0.0008      |
| `AWSWafToken`               | \$0.001       |
| `AWSWafTokenProxyless`      | \$0.001       |
| `KasadaCtToken`             | \$0.0008      |
| `DataDomeTagsCookie`        | \$0.001       |

## Quick Example

```bash theme={null}
curl -X POST https://api.hydrosolves.gay/createTask \
  -H "Content-Type: application/json" \
  -H "apikey: hydrosolves-xxxxxxxx" \
  -d '{
    "type": "HCaptchaCaptchaToken",
    "task": {
      "sitekey": "10000000-ffff-ffff-ffff-000000000001",
      "siteurl": "https://example.com",
      "proxy": "http://user:pass@host:port",
      "user_agent": "Mozilla/5.0 ..."
    }
  }'
```

## How It Works

1. **Create a task** — `POST /createTask` with the task type and parameters
2. **Poll for result** — `GET /getTaskResult?taskid=<id>&apikey=<key>`
3. **Use the token** — inject the solved token into your site

Most solves complete in under 60 seconds. DataDome solves in under 1 second.
