Skip to content
../products
● fastest in class

Math Captcha Solver, solved in 5.0s.

Send an image of an arithmetic expression (e.g. '3 + 5'), get back the computed answer. Sub-second solves via vision LLM.

per 1,000$2.00
avg solve~5.0s
success99%+
throughput12/m
capzy math — live
input · base64 image
3 + 5
↓ vision pipeline · 0.6s
solution.expression
""
solution.text
strategy: geminisolved in 0.6s
type: MathCaptchaTask● running on production solvers

What is Math Captcha?

A math captcha is an image showing a small arithmetic expression — addition, subtraction, multiplication, or division of two or three small whole numbers (e.g. '7 + 2', 'twelve minus four', '6 × 3'). The user is expected to compute the result and type the numeric answer.

How It Works

1

Send Task

POST your MathCaptchaTask with the target URL and sitekey to our API. We'll queue it instantly.

2

We Solve

Capzy's proprietary vision pipeline reads the expression off the image and computes the answer in a sandboxed evaluator. Pure API path — no browser, no proxy, typical solves in ~0.6–1s.

3

Get Token

Poll getTaskResult — when status is 'ready', the solution contains the token to inject into the target page.

Quick Integration

solve.py
import requests, time

API = "https://api.capzy.ai"
KEY = "capzy_your_key_here"

# Step 1: Create task
task = requests.post(f"{API}/createTask", json={
    "clientKey": KEY,
    "task": {
        "type": "MathCaptchaTask",
        "body": "/9j/4AAQSkZJRgABAQ..."
    }
}).json()

task_id = task["taskId"]
print(f"Task created: {task_id}")

# Step 2: Poll for result
while True:
    result = requests.post(f"{API}/getTaskResult", json={
        "clientKey": KEY,
        "taskId": task_id
    }).json()

    if result["status"] == "ready":
        print("Solved!", result["solution"])
        break
    elif result["status"] == "failed":
        print("Failed:", result.get("errorDescription"))
        break

    time.sleep(1)

task parameters.

typetypestringreqyesMathCaptchaTask
bodytypestringreqyesBase64-encoded image (PNG, JPG, GIF, BMP) of the math expression

solution response.

texttypestringThe computed numeric answer (e.g. '8')
expressiontypestringThe expression we read from the image, in standard form (e.g. '3 + 5')

Features

Handles + − × ÷ with two or three operands
Reads symbols and word forms ('plus', 'minus')
No browser, no proxy — pure image-in answer-out
Typical solve under 1 second

ProxyLess Task Type

MathCaptchaTask

Frequently Asked Questions

start solving math captcha.

$0.10 in free credits — no card. ~250 free solves to test before you spend.