Max1 API Documentation

Max1 keys use our premium API. Send requests to https://captcha69.com/createTask with your max1_ key.

Endpoint: Send all API requests to https://captcha69.com. Use your max1_ key as clientKey.

API Methods

MethodDescription
createTaskCreate a captcha solving task
getTaskResultGet task result by ID
getBalanceGet account balance

Supported Captcha Types

TypeTask Type
ReCaptcha v2RecaptchaV2Task
ReCaptcha v3RecaptchaV3TaskProxyless
ReCaptcha v2 EnterpriseRecaptchaV2EnterpriseTask
ReCaptcha v3 EnterpriseRecaptchaV3EnterpriseTask
Cloudflare TurnstileTurnstileTask
Turnstile ChallengeTurnstileTask (challenge)
Turnstile WaitroomTurnstileTask (wait_room)
FunCaptchaFunCaptchaTask
GeeTestGeeTestTask
Image To TextImageToTextTask
Amazon WAFAmazonTask
BinanceBinanceTask
AlibabaCustomTask (alibaba)
AltchaCustomTask (altcha)
FriendlyCustomTask (friendly)
HuntCustomTask (HUNT)
MTCaptchaMTCaptchaTask

Quick Start

1. Create Task

POST https://captcha69.com/createTask
Content-Type: application/json

{
  "clientKey": "max1_YOUR_API_KEY",
  "task": {
    "type": "RecaptchaV2Task",
    "websiteURL": "https://example.com",
    "websiteKey": "6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd"
  }
}

2. Get Result

POST https://captcha69.com/getTaskResult
Content-Type: application/json

{
  "clientKey": "max1_YOUR_API_KEY",
  "taskId": 7654321
}

3. Response

{
  "errorId": 0,
  "status": "ready",
  "solution": {
    "gRecaptchaResponse": "3AHJ_VuvYIBNBW5yyv0zRY..."
  }
}