AmazonTokenProxyLess
API documentation for AmazonTokenProxyLess task type
Optional fields are not guaranteed across providers
Supported Providers
| Provider | Price per 1,000 | Routing |
|---|---|---|
| $1.45 | Not picked | |
| $2.00 | Not picked | |
| $1.40 | Not picked | |
| $0.80 | Auto CheapestAuto FastestAuto Most Reliable |
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 Amazon AWS WAF challenge is shown. Example: |
websiteKey | string | No | Amazon WAF site key from the page source. In provider docs this is usually the key parameter. Example: |
iv | string | No | Amazon WAF iv parameter captured from the challenge page or network requests. Example: |
context | string | No | Amazon WAF context parameter captured from the challenge page or network requests. Example: |
challengeScript | URL | No | Full URL of the Amazon WAF challenge.js script. Example: |
captchaScript | URL | No | Full URL of the Amazon WAF captcha.js script. Example: |
jsapiScript | URL | No | Optional full URL of the jsapi.js script when the page exposes this variant instead of the standard challenge/captcha scripts. Example: |
Example Request
{ "clientKey": "your-api-key-from-dashboard", "task": { "type": "AmazonTokenProxyLess", "websiteURL": "https://non-existent-example.execute-api.us-east-1.amazonaws.com/latest" }}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 |
|---|---|---|---|
captchaVoucher* | string | Yes | Amazon WAF captcha_voucher value returned by the provider. Example: |
raw* | Record<string, unknown> | Yes | Raw provider response data for advanced use cases. |
existingToken | string | No | Amazon WAF existing_token value returned by the provider for subsequent requests. Example: |