Skip to content

cURL

Get Token

bash
curl -X POST https://central.haus/token \
  -H "Authorization: Bearer cst_your_key" \
  -H "Content-Type: application/json" \
  -d '{"target":"EpicLogin"}'

Response:

json
{"ok":true,"id":42,"token":"eg1~...","cookie":"...","useragent":"..."}

Check Balance

bash
curl -H "Authorization: Bearer cst_your_key" \
  https://central.haus/balance

List Targets

bash
curl -H "Authorization: Bearer cst_your_key" \
  https://central.haus/targets

Health Check

bash
curl https://central.haus/health

TIP

Add -m 65 to set a 65-second timeout for the long-poll token request.

Central Solver — Captcha Token API