- 71 stars - Release (paid-only)
- 100 stars - Release Free (src & ai models)
This hCaptcha solver works perfectly for Discord endpoints:
/register/invite
- Average solving time: 16 seconds
- Success rate: 95%
Purchase your API key by joining our Discord server:
👉 https://discord.gg/YvXknpN6sN
http://193.111.249.67:20043/
GET /health
Verify API availability.
Response:
{
"status": "ok",
"message": "Server is running"
}GET /api/status
Check hCaptcha solver status.
Response:
{
"status": "operational",
"service": "hCaptcha Solver"
}POST /api/solve
Submit captcha data for solving.
Headers:
X-API-Key: <your_api_key>
Content-Type: application/json
Request Body:
{
"rqdata": "hCaptcha rqdata",
"proxy": "username:password@host:port"
}Parameters:
rqdata- Required captcha challenge data (obtained from frontend)proxy- HTTP/HTTPS proxy for the connection
Successful Response:
{
"status": "solved",
"solution": "<captcha_token>"
}| Status Code | Error | Description |
|---|---|---|
| 401 | Unauthorized | Missing or invalid API key |
| 400 | Bad Request | Missing required fields (rqdata or proxy) |
| 500 | Internal Server Error | Error occurred during captcha solving process |
See examples for implementation examples.