Quick Start
1. Get an API Key
Start the Telegram Bot and tap Profile to see your API key.
2. Top Up Balance
In the bot, tap Top Up and choose a payment method (CryptoBot, CryptoCloud, or Lolz Market).
3. Make a Request
bash
curl -X POST https://central.haus/token \
-H "Authorization: Bearer cst_your_key" \
-H "Content-Type: application/json" \
-d '{"target":"EpicLogin"}'4. Get Your Token
json
{
"ok": true,
"id": 42,
"token": "eg1~eyJraWQ...",
"cookie": "session=abc123",
"useragent": "Mozilla/5.0..."
}The request waits up to 60 seconds (long-polling). Balance is charged only on success.
5. Use the Token
Use the token, cookie, and useragent fields in your request to the target service.
TIP
Set your HTTP client timeout to 65 seconds to account for the long-poll wait.
