Fast & Reliable

The Easiest Way to
Solve FunCaptcha

voidsolve delivers lightning-fast FunCaptcha token solving at unbeatable prices. No fluff, just results.

Get Started

FunCaptcha Solves

$0.50 / 1K

1,000 FunCaptcha token solves — no tiers, no hidden fees.

  • 1,000 successful tokens
  • SOCKS5 & HTTP/3 proxy support
  • Average 0.3–2s per solve
  • Pay once, no subscription
Get Started

Why choose voidsolve?

Built for developers who need reliable captcha solving without the bloat.

0.3–2s Per Solve

Fast resolution times through our distributed solver infrastructure.

SOCKS5 & HTTP/3

Bring your own proxies — we support SOCKS5 and HTTP/3 protocols.

Roblox Dedicated

Purpose-built for Roblox login and signup FunCaptcha challenges.

$0.50 per 1K Solves

One flat price. No tiers, no subscriptions, no surprises.

Simple REST API

Two endpoints, JSON in/out, curl-friendly. Integrate in minutes.

How it works

Three simple steps to get your captcha tokens.

01

Send the task

Submit the captcha blob and your proxy details to /createTask. We handle the rest.

02

We process it

Our adaptive engine routes the task through the fastest solver nodes, rotating intelligently.

03

Receive the token

Poll /getTaskResult with your task ID and receive your solved captcha token.

API Reference

Two REST endpoints, one key, zero friction.

Create Task

POST

Submit a new captcha solving task.

https://voidsolve.xyz/v1/createTask
curl -X POST https://voidsolve.xyz/v1/createTask \
  -H "Content-Type: application/json" \
  -d '{
  "clientKey": "VOID-AF7A18B95039",
  "task": {
    "type": "FunCaptchaTask",
    "websitePublicKey": "476068BF-9607-4799-B53D-966BE98E2B81",
    "websiteURL": "https://www.roblox.com/login",
    "proxy": "socks5://user:pass@1.2.3.4:1080",
    "data": "{"blob":"CkQ4NzUyQkMt..."}",
    "solvePOW": false,
    "headers": {
      "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)",
      "sec-ch-ua": ""Not/A)Brand";v="99"",
      "sec-ch-ua-platform": ""Windows""
    }
  }
}'

Get Task Result

GET

Poll for the completed token.

https://voidsolve.xyz/v1/getTaskResult/{taskId}
curl https://voidsolve.xyz/v1/getTaskResult/a1b2c3d4-e5f6-7890-abcd-ef1234567890

# Response when ready:
{ "errorId": 0, "taskId": "...",
  "status": "ready",
  "solution": { "token": "56418ae8466753f28|r=us-east-1|..." } }