Core Solver API
A high-performance hCaptcha solving service with a simple REST API.
Overview
Submit hCaptcha challenges and receive solved tokens. Create a task, then poll for the result.
Base URL
https://coresolver.lolProtocol
HTTP POST, JSON bodies
Supported Captcha Types
Flow
POST /createTask— submit the captcha challenge, receive ataskIdPOST /getTaskResult— poll until status isreadyor an error is returned- Use the
gRecaptchaResponsetoken in your request to the target site
Example
curl
curl -X POST https://coresolver.lol/createTask \
-H "Content-Type: application/json" \
-d '{
"clientKey": "your-api-key",
"task": {
"type": "HCaptchaTask",
"websiteURL": "https://example.com/login",
"websiteKey": "your-hcaptcha-sitekey"
}
}'Authentication
Pass your API key as clientKey in every request body. If the server has no keys configured, any value is accepted.