Skip to content

Get Token

Fetches a solved captcha token for the specified target.

POST /token

Request

json
{
  "target": "EpicLogin"
}
FieldTypeRequiredDescription
targetstringYesTarget name (e.g. EpicLogin)

Response

json
{
  "ok": true,
  "id": 42,
  "token": "eg1~eyJraWQ...",
  "cookie": "session=abc123",
  "useragent": "Mozilla/5.0..."
}
FieldDescription
idToken ID (for tracking)
tokenThe solved captcha/auth token
cookieSession cookie (if available)
useragentUser-Agent string (if available)

Long-Polling

The request waits up to 60 seconds for a token to become available. If no token arrives within that time, it returns 404.

WARNING

Set your HTTP client timeout to at least 65 seconds.

Errors

StatusErrorDescription
400target is requiredMissing target field
400Invalid or inactive targetTarget doesn't exist or is disabled
401Authorization requiredNo Bearer token
402Insufficient balanceNot enough balance
404No tokens availableTimeout — no tokens in 60 sec
429Too many concurrent requestsOver concurrency limit

Central Solver — Captcha Token API