AltchaTokenProxyLess
API documentation for AltchaTokenProxyLess task type
Optional fields are not guaranteed across providers
Supported Providers
| Provider | Price per 1,000 | Routing |
|---|---|---|
| $2.99 | Not picked | |
| $2.00 | Auto FastestAuto Most Reliable | |
| $2.50 | Not picked | |
| $1.45 | Auto Cheapest |
Request Schema
| Field | Type | Required | Description |
|---|---|---|---|
clientKey* | string | Yes | Your API key from the AnySolver dashboard. Example: |
task* | object | Yes | |
provider | No | Specific provider to use. If omitted, automatic routing selects the best provider. Example: | |
selectionMode | No | Read more at the routing strategies docs. Example: | |
keyPoolMode | No | Example: |
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: |
challengeURL* | string | Yes | ALTCHA challenge URL, typically taken from the iframe src or widget configuration. This is mainly needed by providers that fetch the challenge file themselves. Example: |
challengeJSON* | string | Yes | Raw ALTCHA challenge JSON content fetched from the challenge URL. This should be the full serialized challenge payload returned by the target site. Example: |
maxnumber | number | No | Maximum puzzle number for the Altcha challenge. Defaults to 1000000 if omitted. |
Example Request
{ "clientKey": "your-api-key-from-dashboard", "task": { "type": "AltchaTokenProxyLess", "websiteURL": "https://altcha.org/playground", "challengeURL": "https://altcha.org/api/challenge?sitekey=demo", "challengeJSON": "{\"algorithm\":\"SHA-256\",\"challenge\":\"4f2d...\",\"salt\":\"8b9a...\",\"signature\":\"MEUCIQ...\"}" }}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 (e.g., "CAPTCHA_UNSOLVABLE"). 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 | Specific provider to use. If omitted, automatic routing selects the best provider. Example: | |
solution | object | No |
Solution Object Properties
The solution field contains an object with the following properties:
| Field | Type | Required | Description |
|---|---|---|---|
token* | string | Yes | The solved CAPTCHA token to submit with your form. Example: |
raw* | Record<string, unknown> | Yes | Raw provider response data for advanced use cases. |