Solve Altcha captcha
Solve Altcha captcha with our API. All you need is to provide URL of the page and challengeURL. This type of task solves without proxies from workers IP addresses. Try this before switching to with proxies task.

Captcha example
Task object
Property | Type | Required | Purpose |
---|---|---|---|
type | String | Yes | AltchaTaskProxyless |
websiteURL | String | Yes | Address of a target web page. Can be located anywhere on the web site, even in a member area. Our workers don't navigate there but simulate the visit instead. |
challengeURL | String | Yes | Challenge URL from altcha-widget <altcha-widget challengeurl="/this/one"></altcha-widget > |
Request example
Python
Javascript
Go
PHP
Java
C#
bash
#pip3 install anticaptchaofficial
from anticaptchaofficial.altchaproxyless import *
solver = altchaProxyless()
solver.set_verbose(1)
solver.set_key("YOUR_API_KEY_HERE")
solver.set_website_url("https://website.com")
solver.set_challenge_url("/some/path/to/challenge/url")
# Specify softId to earn 10% commission with your app.
# Get your softId here: https://anti-captcha.com/clients/tools/devcenter
solver.set_soft_id(0)
token = solver.solve_and_return_solution()
if token != 0:
print("token: "+token)
else:
print("task finished with error "+solver.error_code)
Task solution object
Property | Type | Purpose |
---|---|---|
token | String | Token string required for interacting with the submit form on the destination page. |
Response example
{
"errorId":0,
"status":"ready",
"solution":
{
"token":"eyJhbGdvcml0aG0iOiJTSEEtMjU2IiwiY2hhbGxlbmdlIjoiZWFiOTE3NjRkM2Y5ZDBjMGU4ZmR......."
},
"cost":"0.001500",
"ip":"46.98.54.221",
"createTime":1472205564,
"endTime":1472205570,
"solveCount":"0"
}