MuaraiCaptcha API documentation
REST captcha solving API — create tasks, poll results, pay per success. Full field reference and examples below (no JavaScript required).
Base URL & authentication
- Base URL:
https://api.muaraicaptcha.com - Auth: send your
clientKeyin the JSON request body (not a header). Every solve call includes it. - Content type:
application/jsonon all POST endpoints.
Endpoints
| Method & path | Alias | Purpose |
|---|---|---|
POST /v1/createTask | /v1/job/create | Create a captcha job; returns a taskId. |
POST /v1/getTaskResult | /v1/job/result | Poll a job until status is ready; returns the solution. |
POST /v1/getBalance | /v1/account/balance | Return the account USD balance. |
POST /v1/reportIncorrect | /v1/job/report | Flag a bad solution for quality review. |
GET /v1/taskTypes | /v1/types | List supported task types. |
GET /v1/pricing | — | Live USD/1000 rates (machine-readable). |
GET /v1/catalog | — | Marketing catalog: type, category, price, live status. |
Request / response envelope
Create a task by POSTing your clientKey plus a task object:
POST https://api.muaraicaptcha.com/v1/createTask
Content-Type: application/json
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "RecaptchaV2TaskProxyless",
"websiteURL": "https://example.com",
"websiteKey": "6Lc..."
}
}
Response contains a taskId. Poll for the result:
POST https://api.muaraicaptcha.com/v1/getTaskResult
Content-Type: application/json
{ "clientKey": "YOUR_API_KEY", "taskId": "12345" }
When status is ready, the response carries the solution (token or OCR text). Only successful solves debit balance.
Error codes
| Code | Meaning |
|---|---|
INVALID_KEY | clientKey missing or not found. |
ZERO_BALANCE | Account balance too low for this job. |
BAD_REQUEST | Required task fields missing or invalid. |
TYPE_UNSUPPORTED | task.type is unknown or not enabled on this account. |
JOB_NOT_FOUND | jobId does not exist for this clientKey. |
UNSOLVABLE | Solver could not produce a valid solution. |
TIMEOUT | Job exceeded maximum wait time. |
NO_SLOT | Temporary capacity limit — retry with backoff. |
Supported captcha types (37) — full field reference
Live list: /v1/taskTypes · prices: /v1/pricing · catalog: /v1/catalog
reCAPTCHA v2 / reCAPTCHA v2 Enterprise — RecaptchaV2TaskProxyless
Google reCAPTCHA v2 and reCAPTCHA v2 Enterprise. Users tick “I’m not a robot”; if challenged they select matching images (e.g. traffic lights). The site then receives a response token to verify. Enterprise uses the same flow with additional risk signals via the reCAPTCHA Enterprise API.
Category: token · Price: $0.95 — $2.84 · Typical speed: 2–5 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: RecaptchaV2TaskProxyless RecaptchaV2Task |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
websiteKey | string | yes | reCAPTCHA sitekey. Can be found inside data-sitekey property of the reCAPTCHA div element or inside k parameter of the requests to reCAPTCHA API. You can also use the script to find the value |
recaptchaDataSValue | string | no | The value of data-s parameter. Can be required to bypass the captcha on Google services |
isInvisible | boolean | no | Pass true for Invisible version of reCAPTCHA - a case when you don't see the checkbox, but the challenge appears. Mostly used with a callback function |
userAgent | string | no | User-Agent of your browser will be used to load the captcha. Use only modern browser's User-Agents |
cookies | string | no | Your cookies will be set in a browser of our worker. Suitable for captcha on Google services. The format is: key1=val1; key2=val2 |
apiDomain | string | no | Domain used to load the captcha: google.com or recaptcha.net. Default value: google.com |
enterprisePayload | object | no | Additional parameters passed to grecaptcha.enterprise.render call. For example, there can be an object containing s value. Used with reCAPTCHA Enterprise only |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "RecaptchaV2TaskProxyless",
"websiteURL": "https://example.com",
"websiteKey": "6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u",
"isInvisible": false
}
}
Solution:
{
"gRecaptchaResponse": "03ADUVZw...UWxTAe6ncIa",
"token": "03ADUVZw...UWxTAe6ncIa"
}
reCAPTCHA v3 / reCAPTCHA v3 Enterprise — RecaptchaV3TaskProxyless
Google reCAPTCHA v3 and reCAPTCHA v3 Enterprise. Invisible risk scoring in the background — no checkbox or image quiz for most users. Returns a token plus a score the site can threshold. For Enterprise, set isEnterprise: true.
Category: token · Price: $1.38 · Typical speed: 1–2 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: RecaptchaV3TaskProxyless |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
websiteKey | string | yes | reCAPTCHA sitekey. Can be found inside data-sitekey property of the reCAPTCHA div element or inside k parameter of the requests to reCAPTCHA API. You can also use the script to find the value |
minScore | float | yes | Required score value: 0.3 0.7 0.9 |
pageAction | string | no | Action parameter value. The value is set by website owner inside data-action property of the reCAPTCHA div element or passed inside options object of execute method call, like grecaptcha.execute('websiteKey'{ action: 'myAction' }) |
isEnterprise | boolean | no | Pass true for Enterprise version of reCAPTCHA. You can identify it by enterprise.js script used instead of api.js or by grecaptcha.enterprise.execute call used instead of grecaptcha.execute |
apiDomain | string | no | Domain used to load the captcha: google.com or recaptcha.net. Default value: google.com |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "RecaptchaV3TaskProxyless",
"websiteURL": "https://example.com",
"websiteKey": "6LfB5_IbAAAAAMCtsjEHEHKqcB9iQocwwxTiihJu",
"minScore": 0.9,
"pageAction": "test",
"isEnterprise": false,
"apiDomain": "www.recaptcha.net"
}
}
Solution:
{
"gRecaptchaResponse": "03ADUVZwB7eLoqnBxvi5H...kA4Si3qH0rR0g",
"token": "03ADUVZwB7eLoqnBxvi5H...kA4Si3qH0rR0g"
}
Cloudflare Turnstile — TurnstileTaskProxyless
Cloudflare Turnstile. Lightweight bot check: often invisible or a short widget, not a long image quiz. Completing it yields a siteverify token for the protected form or page.
Category: token · Price: $1.38 · Typical speed: 2–4 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: TurnstileTaskProxyless TurnstileTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
websiteKey | string | yes | Turnstile sitekey. Can be found inside data-sitekey property of the Turnstile div element |
action | string | no | Required for Cloudflare Challenge pages. The value of action parameter of turnstile.render call |
data | string | no | Required for Cloudflare Challenge pages. The value of cData parameter of turnstile.render call |
pagedata | string | no | Required for Cloudflare Challenge pages. The value of chlPageData parameter of turnstile.render call |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "TurnstileTaskProxyless",
"websiteURL": "https://example.com",
"websiteKey": "3x00000000000000000000FF"
}
}
Solution:
{
"token": "0.zrSnRHO7h0HwSjSCU8oyzbjEtD8p.d62306d4ee00c77dda697f959ebbd7bd97",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36"
}
hCaptcha — HCaptchaTaskProxyless
hCaptcha token solver. Solve the hCaptcha challenge on a page and receive a token to submit with the protected form. Supports invisible and Enterprise variants via extra parameters.
Category: token · Price: $2.84 · Typical speed: 4–9 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: HCaptchaTaskProxyless HCaptchaTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. |
websiteKey | string | yes | hCaptcha sitekey. Found in the data-sitekey attribute of the hCaptcha element. |
isInvisible | boolean | no | Set true if the hCaptcha widget is invisible. |
enterprisePayload | object | no | Additional data for Enterprise hCaptcha (e.g. rqdata). Pass as an object. |
userAgent | string | no | Browser User-Agent used to solve; use the same UA when submitting the token. |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "HCaptchaTaskProxyless",
"websiteURL": "https://example.com",
"websiteKey": "10000000-ffff-ffff-ffff-000000000001"
}
}
Solution:
{
"token": "P1_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...",
"gRecaptchaResponse": "P1_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36"
}
Image Captcha (Normal) — ImageToTextTask
Classic image captcha (OCR). Distorted letters or numbers are shown in a picture; the solver types the text they read. Solution is the typed string, not a provider token.
Category: image · Price: $0.48 — $0.95 · Typical speed: 3–7 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type |
body | string | yes | Image encoded into Base64 format. Data-URI format (containing data:content/type prefix) is also supported |
phrase | boolean | no | false - no preference true - the answer should contain at least two words separated by space. |
case | boolean | no | false - no preference true - the result is case-sensitive |
numeric | number | no | 0 - no preference 1 - answer should contain only numbers 2 - answer should contain only letters 3 - answer should contain only numbers OR only letters 4 - answer MUST contain both numbers AND letters |
math | boolean | no | false - no preference true - captcha requires calculation |
minLength | number | no | 0 - no preference >=1 - defines minimal answer length |
maxLength | number | no | 0 - no preference >=1 - defines maximal answer length |
comment | string | no | A comment will be shown to workers to help them to solve the captcha properly |
imgInstructions | string | no | An optional image with instruction that will be shown to workers. Image should be encoded into Base64 format. |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "ImageToTextTask",
"body": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==",
"phrase": false,
"case": true,
"numeric": 0,
"math": false,
"minLength": 1,
"maxLength": 5,
"comment": "enter the text you see on the image"
}
}
Solution:
{
"text": "hello world"
}
Text Captcha — TextCaptchaTask
Plain-text question captcha. No image — answer a written prompt (math, short phrase, or simple knowledge) by typing the reply.
Category: image · Price: $0.48 — $0.95 · Typical speed: 1–4 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | TextCaptchaTask |
body | string | yes | Base64-encoded image or image URL of the captcha to solve |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "TextCaptchaTask",
"body": "data:image/png;base64,iVBORw0KGgo..."
}
}
Solution:
{
"text": "friday"
}
GeeTest — GeeTestTaskProxyless
GeeTest (China). Interactive challenges: slide a puzzle piece, click icons in order, or similar gestures — not typing random characters. Common on Asian and fintech sites.
Category: token · Price: $2.84 · Typical speed: 5–11 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: GeeTestTaskProxyless GeeTestTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
gt | string | yes | GeeTest gt value. |
challenge | string | yes | GeeTest challenge value. |
geetestApiServerSubdomain | string | no | Only for GeeTest v3. Custom GeeTest API domain, for example: api-na.geetest.com. Can be defined inside initGeetest call. Also you can check the domain used to load the scripts, the default domain is api.geetest.com. |
userAgent | string | no | User-Agent of your browser will be used to load the captcha. Use only modern browser's User-Agents |
version | number | yes | Should be set to 4 for GeeTest v4. Default: 3. GeeTest version: 3 or 4 |
initParameters | object | yes | Required for GeeTest v4. Captcha parameters passed to initGeetest4 call, must contain captcha_id value, for example: {"captcha_id" : "e392e1d7fd421dc63325744d5a2b9c73"} |
risk_type | string | no | The risk_type parameter value is included in the captcha loading request. It’s dynamic, valid for a single use, and has an expiration time. |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "GeeTestTaskProxyless",
"websiteURL": "https://example.com",
"gt": "81388ea1fc187e0c335c0a8907ff2625",
"challenge": "2e2f0f65240058b683cb6ea21c303eea6n",
"version": 0,
"initParameters": "YOUR_INITPARAMETERS"
}
}
Solution:
{
"challenge": "cd8939e104fe2edb6448c8b0dc72fec6la",
"validate": "d7b8b93452951ab2e40b40616131622f",
"seccode": "d7b8b93452951ab2e40b40616131622f|jordan"
}
Arkose Labs (FunCaptcha) — FunCaptchaTaskProxyless
Arkose Labs FunCaptcha. Interactive 3D or match puzzles (rotate an object, pick the right scene). Users manipulate the puzzle; the result is a session token for the site.
Category: token · Price: $1.38 — $47.50 · Typical speed: 6–14 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: FunCaptchaTaskProxyless FunCaptchaTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
websitePublicKey | string | yes | ArkoseLabs captcha public key. The public key can be found in the value of the data-pkey parameter of the div element FunCaptcha, or you can find an element named (name) fc-token and from its value cut out the key that is specified after pk. |
funcaptchaApiJSSubdomain | string | no | Custom subdomain used to load the captcha widget, like: sample-api.arkoselabs.com |
data | string | no | Additional data payload object converted to a string with JSON.stringify. Example: {\"blob\":\"BLOB_DATA_VALUE\"} |
userAgent | string | no | User-Agent of your browser will be used to load the captcha. Use only modern browser's User-Agents |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "FunCaptchaTaskProxyless",
"websiteURL": "https://www.example.com",
"websitePublicKey": "6220FF23-9856-3A6F-9FF1-A14F88123F55",
"funcaptchaApiJSSubdomain": "client-api.arkoselabs.com",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36"
}
}
Solution:
{
"token": "142000f7f4545ca36.6123911001|r=us-beast-1|meta=3|metabgclr=%23ffffff|metaiconclr=%23757575|guitextcolor=%23000000|pk=6220FF23-9856-3A6F-9FF1-A14F88123F55|dc=1|at=40|ag=101|cdn_url=https%3A%2F%2Fsuncaptcha.com%2Fcdn%2Ffc|lurl=https%3A%2F%2Faudio-us-beast-1.arkoselabs.com|surl=https%3A%2F%2Fsuncaptcha.com|smurl=https%3A%2F%2Fsuncaptcha.com%2Fcdn%2Ffc%2Fassets%2Fstyle-manager"
}
Amazon WAF captcha — AmazonTaskProxyless
Amazon / AWS WAF captcha. Bot-wall on storefront or cloud endpoints — typically a visual or puzzle challenge before the request continues.
Category: token · Price: $1.38 · Typical speed: 5–12 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: AmazonTaskProxyless AmazonTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
websiteKey | string | yes | Value of key parameter you found on the page |
iv | string | yes | Value of iv parameter you found on the |
context | string | yes | Value of context parameter you found on the page |
challengeScript | string | no | The source URL of challenge.js script on the page |
captchaScript | string | no | The source URL of captcha.js script on the page |
jsapiScript | string | yes | The source URL of jsapiScript.js script on the page |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "AmazonTaskProxyless",
"websiteURL": "https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest",
"challengeScript": "https://41bcdd4fb3cb.610cd090.us-east-1.token.awswaf.com/41bcdd4fb3cb/0d21de737ccb/cd77baa6c832/challenge.js",
"captchaScript": "https://41bcdd4fb3cb.610cd090.us-east-1.captcha.awswaf.com/41bcdd4fb3cb/0d21de737ccb/cd77baa6c832/captcha.js",
"websiteKey": "AQIDA...wZwdADFLWk7XOA==",
"context": "qoJYgnKsc...aormh/dYYK+Y=",
"iv": "CgAAXFFFFSAAABVk",
"jsapiScript": "YOUR_JSAPISCRIPT"
}
}
Solution:
{
"captcha_voucher": "eyJ0eXAiO...oQjTnJlBvAW4",
"existing_token": "f8ab5749-f916-...5D8yAA39JtKVbw="
}
Coordinates — CoordinatesTask
Click-on-image captcha. Prompt like “click the cat” — answer is the X/Y pixel coordinates of the clicks on the image.
Category: image · Price: $1.14 · Typical speed: 3–8 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: CoordinatesTask |
body | string | yes | Image encoded into Base64 format. Data-URI format (containing data:content/type prefix) is also supported |
comment | string | yes | A comment will be shown to workers to help them to solve the captcha properly |
imgInstructions | string | no | An optional image with instruction that will be shown to workers. Image should be encoded into Base64 format. Max file size: 100 kB |
minClicks | number | no | The minimum number of clicks to perform on the image. Default: 1 |
maxClicks | number | no | The maximum number of clicks that can be performed on the image |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "CoordinatesTask",
"body": "/9j/4AAQSkZJRgABAQAAAQ..HIAAAAAAQwAABtbnRyUkdCIFhZ.wc5GOGSRF//Z",
"comment": "click on the green apple"
}
}
Solution:
{
"coordinates": [
{
"x": 358,
"y": 268
}
]
}
Grid — GridTask
Grid / tile captcha. An image is split into cells; the user selects tiles that match the prompt (similar to reCAPTCHA image grids).
Category: image · Price: $0.48 · Typical speed: 3–8 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | GridTask |
body | string | yes | Image encoded into Base64 format. Data-URI format (containing data:content/type prefix) is also supported |
rows | number | no | Number of grid rows |
columns | number | no | Number of grid columns |
comment | string | yes | A comment will be shown to workers to help them to solve the captcha properly |
imgInstructions | string | yes | An image with instruction that will be shown to workers. Image should be encoded into Base64 format. Max file size: 100 kB |
previousId | string | no | Id of your previous request with the same captcha challenge |
imgType | string | no | The image will be recognized using Computer Vision, which significantly reduces the time needed to solve the captcha. Supported value options: funcaptcha - sending FunCaptcha, the version in which you need to click on the square matching the requirements. recaptcha - sending reCAPTCHA. Important: when using the imgType parameter, it is required to send the comment parameter containing the original instructions for the captcha in English, and you also need to send the original image files and not screenshots. |
previousId | string | no | Id of your previous request with the same captcha challenge |
minClicks | number | no | The minimum number of tiles that must be selected. Default: 1. Can't be more than rows * columns |
maxClicks | number | no | The maximum number of tiles that can be selected on the image. Default: rows * columns |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "GridTask",
"body": "/9j/4AAQSkZJRgABAQAAAQ..HIAAAAAAQwAABtbnRyUkdCIFhZ.wc5GOGSRF//Z",
"comment": "select all vehicles",
"rows": 4,
"columns": 4,
"imgInstructions": "YOUR_IMGINSTRUCTIONS"
}
}
Solution:
{
"click": [
4,
8,
12,
16
]
}
Rotate captcha — RotateTask
Rotate captcha. An object or photo is shown tilted; the user rotates it until it looks correct. Answer is the rotation angle or steps.
Category: image · Price: $0.48 · Typical speed: 3–7 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | RotateTask |
body | string | yes | Image encoded into Base64 format. Data-URI format (containing data:content/type prefix) is also supported |
angle | number | yes | One step rotation angle. You can count how many steps are required to rotate the image 360 degrees and then divide 360 by this count to get the angle value |
comment | string | no | A comment will be shown to workers to help them to solve the captcha properly |
imgInstructions | string | no | An optional image with instruction that will be shown to workers. Image should be encoded into Base64 format. Max file size: 100 kB |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "RotateTask",
"body": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==",
"comment": "position the image properly",
"angle": 60
}
}
Solution:
{
"rotate": 180
}
Audio captcha — AudioTask
Audio captcha. Spoken letters or numbers (often with noise) are played; the user listens and types what they hear — accessibility-style challenge.
Category: image · Price: $0.48 · Typical speed: 4–9 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: AudioTask |
body | string | yes | Base64 encoded audio file in mp3 format |
lang | string | yes | The language of audio record. Supported languages are: en, fr, de, el, pt, ru |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "AudioTask",
"body": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==",
"lang": "en"
}
}
Solution:
{
"text": "hello world"
}
DataDome — DataDomeSliderTask
DataDome bot management. Interstitial or slider-style checks on protected e-commerce traffic before the page continues.
Category: token · Price: $1.38 · Typical speed: 6–13 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: DataDomeSliderTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. |
captchaUrl | string | yes | The value of the src parameter for the iframe element containing the captcha on the page. |
userAgent | string | yes | User-Agent of your browser will be used to load the captcha. |
proxyType | string | yes | Proxy type: http socks4 socks5 |
proxyAddress | string | yes | Proxy IP address or hostname |
proxyPort | number | yes | Proxy port |
proxyLogin | string | no | Login for basic authentication on the proxy |
proxyPassword | string | no | Password for basic authentication on the proxy |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "DataDomeSliderTask",
"websiteURL": "https://www.pokemoncenter.com/",
"captchaUrl": "https://geo.captcha-delivery.com/captcha/?initialCid=AHrlqAAAAAMAlk-FmAyNOW8AUyTH_g%3D%3D&hash=5B45875B653A484CC79E57036CE9FC&cid=noJuZstmvINksqOxaXWQogbPBd01y3VaH3r-CZ4eqK4roZuelJMHVhO2rR0IySRieoAivkg74B4UpJ.xj.jVNB6-aLaW.Bwvik7__EncryD6COavwx8RmOqgZ7DK_3v&t=fe&referer=https%3A%2F%2Fwww.pokemoncenter.com%2F&s=9817&e=2b1d5a78107ded0dcdc8317aa879979ed5083a2b3a95b734dbe7871679e1403",
"userAgent": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.3",
"proxyType": "http",
"proxyAddress": "1.2.3.4",
"proxyPort": "8080",
"proxyLogin": "user23",
"proxyPassword": "p4$w0rd"
}
}
Solution:
{
"cookie": "datadome=4ZXwCBlyHx9ktZhSnycMF...; Path=/; Secure; SameSite=Lax"
}
MTCaptcha — MtCaptchaTaskProxyless
MTCaptcha widget. Modern checkbox or adaptive challenge on forms; after pass, the page gets a verification token.
Category: token · Price: $1.38 · Typical speed: 3–7 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: MtCaptchaTaskProxyless MtCaptchaTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. |
websiteKey | string | yes | The MTCaptcha sitekey value found in the page code. |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "MtCaptchaTaskProxyless",
"websiteURL": "https://service.mtcaptcha.com/mtcv1/demo/index.html",
"websiteKey": "MTPublic-DemoKey9M"
}
}
Solution:
{
"token": "v1(00cc43a5,1adfe4b4,MTPublic-DemoKey9M,0080ab49...IJexMsishqlg**)"
}
Friendly Captcha — FriendlyCaptchaTaskProxyless
Friendly Captcha. Privacy-first proof-of-work runs in the browser — users usually do not type text or pick images. Solution is a PoW payload the site verifies.
Category: token · Price: $1.38 · Typical speed: 2–5 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: FriendlyCaptchaTaskProxyless FriendlyCaptchaTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
websiteKey | string | yes | The value of data-sitekey attribute of captcha's div element on page. |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "FriendlyCaptchaTaskProxyless",
"websiteURL": "https://example.com",
"websiteKey": "2FZFEVS1FZCGQ9"
}
}
Solution:
{
"token": "f8b10f4ad796484bae963b1ebe3ce2bb.ZXL8Z...AAAAAA.AgAD"
}
Lemin captcha — LeminTaskProxyless
Lemin puzzle captcha. A cropped or missing image fragment must be placed correctly; answer is position/crop data, not typed text.
Category: token · Price: $1.38 · Typical speed: 5–11 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: LeminTaskProxyless LeminTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
captchaId | string | yes | Lemin captchaId value. Unique for a website. |
divId | string | yes | The id of captcha parent div element |
leminApiServerSubdomain | string | no | API domain used to load the captcha scripts. Default: https://api.leminnow.com/ |
userAgent | string | no | User-Agent of your browser will be used to load the captcha. Use only modern browser's User-Agents |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "LeminTaskProxyless",
"captchaId": "CROPPED_3dfdd5c_d1872b526b794d83ba3b365eb15a200b",
"divId": "lemin-cropped-captcha",
"leminApiServerSubdomain": "api.leminnow.com",
"websiteURL": "https://example.com"
}
}
Solution:
{
"answer": "0xaxakx0xaxaax0xkxx3ox0x3ox3ox...gAAAAABk8bgzEFOg9i3Jm",
"challenge_id": "e0348984-92ec-23af-1488-446e3a58946c"
}
KeyCAPTCHA — KeyCaptchaTaskProxyless
KeyCAPTCHA. Drag small objects onto targets in a scene (interactive placement), then the form continues with a response token.
Category: token · Price: $2.84 · Typical speed: 5–10 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: KeyCaptchaTaskProxyless KeyCaptchaTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
s_s_c_user_id | string | yes | The value of s_s_c_user_id parameter found on page |
s_s_c_session_id | string | yes | The value of s_s_c_session_id parameter found on page |
s_s_c_web_server_sign | string | yes | The value of s_s_c_web_server_sign parameter found on page |
s_s_c_web_server_sign2 | string | yes | The value of s_s_c_web_server_sign2 parameter found on page |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "KeyCaptchaTaskProxyless",
"s_s_c_user_id": 10,
"s_s_c_session_id": "493e52c37c10c2bcdf4a00cbc9ccd1e8",
"s_s_c_web_server_sign": "9006dc725760858e4c0715b835472f22-pz-",
"s_s_c_web_server_sign2": "2ca3abe86d90c6142d5571db98af6714",
"websiteURL": "https://example.com"
}
}
Solution:
{
"token": "84f42ee334f6bd760b8be3b2b...492598266d7a2418511776505f79|1"
}
Capy Puzzle — CapyTaskProxyless
Capy Puzzle. Jigsaw-style: drag puzzle pieces into the correct place on the image, then submit.
Category: token · Price: $2.84 · Typical speed: 5–11 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: CapyTaskProxyless CapyTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
siteKey | string | yes | Capy Puzzle Captcha captchakey. |
apiServer | string | yes | Capy API server URL (e.g. https://api.capy.me) |
userAgent | string | no | User-Agent of your browser will be used to load the captcha. Use only modern browser's User-Agents |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "CapyTaskProxyless",
"websiteURL": "https://example.com/",
"siteKey": "PUZZLE_Abc1dEFghIJKLM2no34P56q7rStu8v",
"apiServer": "https://api.capy.me"
}
}
Solution:
{
"captchakey": "PUZZLE_Abc1dEFghIJKLM2no34P56q7rStu8v",
"challengekey": "qHAPtn68KTnXFM8VQ3mtYRtmy3cSKuHJ",
"answer": "0xax8ex0xax84x0xkx7qx0xux7gx0xx42x0x3ox42x0x3ox4cx",
"respKey": ""
}
Tencent (TenDI) — TencentTaskProxyless
Tencent captcha (TenDI). Common on Chinese properties: slide bars, tap icons, or image puzzles — interactive solving, not classic text OCR.
Category: token · Price: $2.84 · Typical speed: 4–9 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: TencentTaskProxyless TencentTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
appId | string | yes | The value of appId parameter in the website source code. |
captchaScript | string | no | Captcha script URL from the page source code. Default: https://turing.captcha.qcloud.com/TCaptcha.js |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "TencentTaskProxyless",
"appId": "190014885",
"websiteURL": "https://www.example.com/"
}
}
Solution:
{
"appid": "190014885",
"ret": 0,
"ticket": "tr0344YjJASGmJGtohyWS_y6tJKiqVPIdFgl87vWlVaQoueR8D6DH28go-i-VjeassM31SXO7D0*",
"randstr": "@KVN"
}
Yandex SmartCaptcha — YandexSmartCaptchaTaskProxyless
Yandex SmartCaptcha. Used on Yandex and many .ru sites: checkbox and/or image tasks with UX similar to reCAPTCHA.
Category: token · Price: $1.38 · Typical speed: 4–9 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: YandexSmartCaptchaTaskProxyless or YandexSmartCaptchaTask |
websiteURL | string | yes | Full URL of the page where the captcha is loaded |
websiteKey | string | yes | The sitekey value from the page code or captcha iframe |
userAgent | string | no | Your _userAgent_ to be used during solving |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "YandexSmartCaptchaTaskProxyless",
"websiteURL": "https://mysite.com/",
"websiteKey": "Y5Lh0ti..."
}
}
Solution:
{
"token": "dV9xNjYyNTU3NjkxO4k9OTQuNVMuMjkuMjM9O9Q9MVEzQUEwMURERTY3RkUxQ9U3MTlEQzE3RjhYNTJCQUFFN9YyQTc3QUNFQjk9NzhVOTZGNjVCOEUyOVM4RTg9Q9VEQzY9NzY4O3U9MTY4MjU3NTY5MTQ4MTI3MVUyNVTo2ImVWMmQ4NWQzNjdlNzM9MVYhOGI5NWMxNWZlM4E4"
}
Binance captcha — BinanceCaptchaTask
Binance exchange risk captcha. On login or sensitive actions users complete a slider or visual puzzle-style check.
Category: token · Price: $2.84 · Typical speed: 4–10 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: BinanceTask or BinanceTaskproxyless |
websiteURL | string | yes | Full URL of the page where the captcha is loaded |
websiteKey | string | yes | Value of bizId, bizType, or bizCode from page requests |
validateId | string | yes | Dynamic value of validateId, securityId, or securityCheckResponseValidateId |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "BinanceTaskproxyless",
"websiteURL": "https://example.com/page-with-binance",
"websiteKey": "login",
"validateId": "cb0bfefa598...e54ecd57b",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36"
}
}
Solution:
{
"token": "captcha#09ba4905a79f44f...kc99maS943qIsquNP9D77",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36"
}
Prosopo Procaptcha — ProsopoProcaptchaTask
Prosopo Procaptcha. Privacy-oriented bot check (lightweight challenge / proof-of-work style) that produces a Procaptcha token.
Category: token · Price: $1.38 · Typical speed: 2–5 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: ProsopoTaskProxyless ProsopoTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
websiteKey | string | yes | The value of siteKey parameter found on the page |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "ProsopoTaskProxyless",
"websiteKey": "5EPQoMZEDc5LpN7gtxMMzYPTzA6UeWqL2stk1rso9gy4Ahqt",
"websiteURL": "https://www.example.com/"
}
}
Solution:
{
"token": "0x00016c68747470733a2f2f70726f6e6f6465332e70726f736f706f2e696fc0354550516f4d5a454463354c704e376774784d4d7a5950547a4136..."
}
Temu captcha — TemuCaptchaTask
Temu marketplace anti-bot wall. Interactive visual challenges on browse, login, or checkout — not a simple text field.
Category: token · Price: $0.95 · Typical speed: 4–10 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: TemuCaptchaTask |
image | string | yes | Main background image as base64-encoded string |
parts | array | yes | An array of movable image pieces in base64 format |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "TemuImageTask",
"image": "/9j/4AAQSkZJRg......",
"parts": [
"part1_b64",
"part2_b64",
"part3_b64"
]
}
}
Solution:
{
"coordinates": [
{
"x": 155,
"y": 358
},
{
"x": 152,
"y": 153
},
{
"x": 251,
"y": 333
}
]
}
VK Captcha — VkCaptchaTask
VK (VKontakte) captcha. Social-network protection: image or interactive check before login, post, or other actions.
Category: token · Price: $1.38 · Typical speed: 3–7 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: VKCaptchaTask |
image | string | yes | Image of the captcha task in base64 format |
steps | string | yes | The value of the steps parameter from the response to the request https://api.vk.com/method/captchaNotRobot.getContent?v={API_VER} when loading the captcha widget on the page |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "VKCaptchaImageTask",
"image": "/9j/4AAQSkZJRg......",
"steps": [
5,
19,
14,
14,
6,
4,
8,
9,
23,
23,
14,
23,
3,
13,
16,
8,
2,
4,
6,
16,
1,
1,
3,
12,
23,
18,
12,
24,
17,
7,
6,
22,
2,
4,
0,
22,
3,
18,
11,
5,
4,
5,
6,
14,
22,
21,
6,
10,
0,
3,
14,
18,
19,
2,
24,
0,
3,
23,
9,
21,
5,
24,
21,
0,
4,
15,
14,
21,
8,
5,
17,
19,
12,
19,
15,
17,
21,
11,
8,
4,
15,
0,
18,
16,
19,
4,
19,
20,
21,
22,
16,
10,
20,
12,
19,
5,
23,
24,
8
]
}
}
Solution:
{
"token": "eyJhbG...kyAWZSNoJPw"
}
CyberSiARA — AntiCyberSiaraTask
CyberSiARA anti-bot widget. Complete the on-page challenge to unlock the form or flow.
Category: token · Price: $1.38 · Typical speed: 5–11 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: AntiCyberSiAraTask AntiCyberSiAraTaskProxyless |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. |
SlideMasterUrlId | string | yes | The value of the MasterUrlId parameter obtained from the request to the endpoint API/CyberSiara/GetCyberSiara. |
userAgent | string | yes | User-Agent of your browser will be used to load the captcha. Use only modern browser's User-Agents |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "AntiCyberSiAraTaskProxyless",
"websiteURL": "https://www.cybersiara.com/book-a-demo",
"SlideMasterUrlId": "OXR2LVNvCuXykkZbB8KZIfh162sNT8S2",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36"
}
}
Solution:
{
"token": "eyJhbGciO...Tc4NTM3MQ=="
}
atbCAPTCHA — AtbCaptchaTask
atbCAPTCHA. Interactive enterprise/banking-style visual or task challenge — not plain OCR text typing.
Category: token · Price: $1.38 · Typical speed: 4–9 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: AtbCaptchaTaskProxyless AtbCaptchaTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
appId | string | yes | The value of appId parameter in the website source code. |
apiServer | string | yes | The value of apiServer parameter in the website source code. |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "AtbCaptchaTaskProxyless",
"appId": "af23e041b22d000a11e22a230fa8991c",
"apiServer": "https://cap.aisecurius.com",
"websiteURL": "https://www.example.com/"
}
}
Solution:
{
"token": "sl191suxzluwxxh6f:"
}
Alibaba captcha — AlibabaTaskProxyless
Alibaba / Aliyun captcha. Marketplace and cloud bot checks — typically slide or image interaction on protected pages.
Category: token · Price: $2.84 · Typical speed: 4–10 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: AlibabaTaskProxyless or AlibabaTask |
websiteURL | string | yes | Full URL of the target web page where the captcha is loaded |
sceneId | string | yes | Captcha scenario identifier, passed in this format: "sceneId":"1ww7426c4" |
prefix | string | yes | Captcha initialization parameter passed in the URL of the request used to load the task text on the page. For example, if the URL looks like https://dlw3kug.captcha-open.example.aliyuncs.com/, the prefix value matches the subdomain, which is dlw3kug |
userId | string | no | Unique identifier of the user or session on the website side |
userUserId | string | no | Additional (secondary) user identifier |
verifyType | string | no | Version or type of the captcha verification mechanism |
region | string | no | Region of the server or data center processing the captcha |
userCertifyId | string | no | Unique verification ID linked to the current captcha session |
apiGetLib | string | no | Link to the captcha JS library used by the site. The value is formed on the client side and might be generated dynamically on every page render |
userAgent | string | no | Browser User-Agent used to open the page |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "AlibabaTaskProxyless",
"sceneId": "abc123xyz4",
"prefix": "def456gh",
"userId": "Abc123Def456Ghi789Jkl012Mno345Pqr678Stu901=",
"userUserId": "Xyz987Abc654Def321Ghi098Jkl765Mno432Pqr109=",
"verifyType": "1.0",
"region": "sgp",
"apiGetLib": "https://o.example.com/captcha-frontend/aliyunCaptcha/AliyunCaptcha.js?t=1234",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36",
"websiteURL": "https://www.example.com",
"userCertifyId": "abc123def456ghi789jkl012mno345pq"
}
}
Solution:
{
"data": {
"tokens": "{\"sceneId\":\"abc123xyz4\",\"certifyId\":\"aBcDeF1234\",\"deviceToken\":\"ABC_WEB#1234...xyz789=\",\"data\":\"AbC123xYz...DeF456qWe789\"}"
}
}
Cutcaptcha — CutCaptchaTaskProxyless
Cutcaptcha. Image “cut” / assemble puzzle: move the cut piece into the correct slot on the picture.
Category: token · Price: $1.38 · Typical speed: 3–7 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: CutCaptchaTaskProxyless CutCaptchaTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. We do not open the page, not a problem if it is available only for authenticated users |
miseryKey | string | yes | The value of CUTCAPTCHA_MISERY_KEY variable defined on page. |
apiKey | string | yes | The value of data-apikey attribute of iframe's body. Also the name of javascript file included on the page |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "CutCaptchaTaskProxyless",
"miseryKey": "a1488b66da00bf332a1488993a5443c79047e752",
"apiKey": "SAb83IIB",
"websiteURL": "https://example.cc/foo/bar.html"
}
}
Solution:
{
"token": "BazM23cpFUUyAAAdqPwNEDZx0REtH3ss"
}
CaptchaFox — CaptchaFoxTask
CaptchaFox. Browser bot-check widget; the user finishes a short challenge so the site can accept the request.
Category: token · Price: $1.38 · Typical speed: 3–7 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: CaptchaFoxTask |
websiteURL | string | yes | The full URL of the target web page where the captcha is loaded. |
websiteKey | string | yes | The value of the key parameter. It can be found in the page source code or captured in network requests during page loading. |
userAgent | string | yes | The User-Agent of the browser that will be used by the worker to load the captcha. |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "CaptchaFoxTask",
"websiteURL": "https://mysite.com/page/with/captchafox",
"websiteKey": "sk_xtNxpk6fCdFbxh1_xJeGflSdCE9tn99G",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36"
}
}
Solution:
{
"token": "7828075fb55ecbd9146745ee6f2bec475b88076d36e23050f1fb28359ffca15d"
}
Yidun - NeCaptcha — YidunCaptchaTask
NetEase Yidun (NeCaptcha). Chinese platforms: slide, click-word, or icon-order puzzles — interactive, not typing distorted text.
Category: token · Price: $2.84 · Typical speed: 4–9 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: YidunTaskProxyless YidunTask |
websiteURL | string | yes | Full URL of the target web page where the captcha loads |
websiteKey | string | yes | Value of the id or sitekey parameter in the site's source code |
userAgent | string | no | Browser User-Agent used to open the page |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "YidunTaskProxyless",
"websiteURL": "https://example.com/page-with-yidun",
"websiteKey": "0f743r3g1g...rz3grz0ym5",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"
}
}
Solution:
{
"token": "D19scz7n4VCU7b_...fRyEY-tXQ0cmS6laRKp_tZEyei_EUzc5M1IW0oxUHnZ4fBMH2a0jMPjOReiHVWBgkrcRYaOkQRasHlFejEToe7HZJy2jaGkxiB9b"
}
ALTCHA — AltchaTaskProxyless
ALTCHA (open source). Client-side proof-of-work challenge — no “type the letters” step; the browser computes a valid solution payload.
Category: token · Price: $2.84 · Typical speed: 2–5 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: AltchaTaskProxyless AltchaTask |
websiteURL | string | yes | The full URL of target web page where the captcha is loaded. |
challengeURL | string | yes | The value of the src parameter for the iframe element containing the captcha on the page. |
challengeJSON | string | yes | The contents of the file from the 'challenge_url' parameter |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "AltchaTaskProxyless",
"websiteURL": "https://site.com/",
"challengeURL": "https://.../captcha/api/altcha/challenge",
"challengeJSON": "YOUR_CHALLENGEJSON"
}
}
Solution:
{
"token": "eyJhbGdvcml0aG0iOiJTSEEtMjU2IiwiY2hhbGxlbmdlIjoiZWFiOTE3NjRkM2Y5ZDBjMGU4ZmR......."
}
Imperva (Incapsula) — ImpervaTaskProxyless
Imperva (Incapsula) anti-bot protection bypass. Provides websiteURL and the site resolves the Imperva challenge to return a valid token.
Category: token · Price: $2.84 · Typical speed: 6–9 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: ImpervaTaskProxyless |
websiteURL | string | yes | The full URL of the target page protected by Imperva |
userAgent | string | no | Browser User-Agent to use |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "ImpervaTaskProxyless",
"websiteURL": "https://example.com"
}
}
Solution:
{
"token": "abj2J5h...token_data...kL9",
"userAgent": "Mozilla/5.0 ..."
}
Hunt captcha — HuntCaptchaTask
Hunt captcha anti-bot challenge. Provide websiteURL; the solver completes the challenge and returns a token.
Category: token · Price: $2.84 · Typical speed: 10–19 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: HuntCaptchaTask |
websiteURL | string | yes | The full URL of the target page |
userAgent | string | no | Browser User-Agent |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "HuntCaptchaTask",
"websiteURL": "https://example.com"
}
}
Solution:
{
"token": "hunt_token_data..."
}
TSPD captcha — TSPDCaptchaTask
Akamai TSPD cookie solver. Provides websiteURL; the solver handles Akamai's TSPD challenge and returns the required cookies.
Category: token · Price: $2.84 · Typical speed: 10–15 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: TSPDCaptchaTask |
websiteURL | string | yes | The full URL of the target page |
userAgent | string | no | Browser User-Agent |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "TSPDCaptchaTask",
"websiteURL": "https://example.com"
}
}
Solution:
{
"token": "tspd_token_data...",
"cookies": {
"TSPD_123": "value"
}
}
Basilisk captcha — BasiliskCaptchaTask
Basilisk anti-bot challenge solver. Provide websiteURL; the solver resolves the Basilisk challenge to return a valid token.
Category: token · Price: $2.84 · Typical speed: 10–19 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: BasiliskCaptchaTask |
websiteURL | string | yes | The full URL of the target page |
userAgent | string | no | Browser User-Agent |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "BasiliskCaptchaTask",
"websiteURL": "https://example.com"
}
}
Solution:
{
"token": "basilisk_token_data..."
}
TikTok Captcha — TikTokCaptchaTask
TikTok-specific captcha solver. Provide websiteURL; the solver completes the TikTok challenge and returns a token.
Category: token · Price: $2.84 · Typical speed: 5–7 sec.
| Field | Type | Required | Description |
|---|---|---|---|
type | string | yes | Task type: TikTokCaptchaTask |
websiteURL | string | yes | The full URL of the TikTok page with the captcha |
userAgent | string | no | Browser User-Agent |
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "TikTokCaptchaTask",
"websiteURL": "https://www.tiktok.com"
}
}
Solution:
{
"token": "tiktok_token_data..."
}
More
The interactive docs (after JavaScript loads) add copy-paste code samples in multiple languages. This static page carries the full field reference for crawlers and no-JS clients. See also llms.txt.