FriendlyCaptchaTokenProxyLess
API documentation for FriendlyCaptchaTokenProxyLess task type
Supported Providers
| Provider | Price per 1,000 | Routing |
|---|---|---|
| $1.45 | ||
| $2.00 | ||
| $1.50 |
Request Schema
| Field | Type | Required | Description |
|---|---|---|---|
clientKey* | string | Yes | Your API key. Create one in the AnySolver dashboard. Example: |
task* | object | Yes | The task body. Required fields depend on the task type. See Tasks for per-task schemas. View task properties |
settings | object | No | Per-request settings for routing, auto retry, auto fallback, and proxy behavior. See Routing Strategies. View settings reference |
Task Object Properties
The task field accepts an object with the following properties:
| Field | Type | Required | Description |
|---|---|---|---|
type* | Yes | ||
websiteURL* | URL | Yes | Full URL of the page where the CAPTCHA is displayed. Example: |
websiteKey* | string | Yes | The site key found in the CAPTCHA HTML element on the target page. Example: |
moduleScript* | string | Yes | URL of the widget script the page loads: Example: |
version | No | Friendly Captcha widget version used on the page. Example: | |
nomoduleScript | string | No | URL of the legacy Example: |
{ "clientKey": "your-api-key-from-dashboard", "task": { "type": "FriendlyCaptchaTokenProxyLess", "websiteURL": "https://example.com/signup", "websiteKey": "FCMGD8BOO9CFF3RA", "moduleScript": "https://cdn.jsdelivr.net/npm/[email protected]/widget.module.min.js" }}Optional fields are not guaranteed across providers
Response Schema
| Field | Type | Required | Description |
|---|---|---|---|
status* | Yes | Task status: "processing", "ready", or "failed". Example: | |
errorId* | Yes | 0 = success, 1 = external error, 2 = internal error. Example: | |
taskId | string | No | Unique identifier returned when the task was created. Example: |
errorCode | No | Machine-readable error code. Example: | |
errorDescription | string | No | Human-readable error message with resolution hints. Example: |
cost | number | No | Actual cost charged for this task in USD. Example: |
taskType | No | The type of CAPTCHA task to solve. Example: | |
provider | No | Provider that handled this task. While processing, the provider currently solving it. Example: | |
solution | object | No |
Solution Object Properties
The solution field contains an object with the following properties:
| Field | Type | Required | Description |
|---|---|---|---|
token* | string | Yes | Solved token. Submit it as Example: |
raw* | Record<string, unknown> | Yes | Raw provider response data for advanced use cases. |
userAgent | string | No | User-Agent string used during solving (if applicable). |