Hcaptcha

Hcaptcha task endpoints

Informations

Turbo ST can't be more than 30000ms and lower than 1000ms. Default is 3000ms, Lower delay can make things slower. If turbo is disabled, task may be submit in 7s Change this setting can affect pass %


Create task

POST https://node00.nikolahellatrigger.solutions/api/task/new

If you are targeting a high score target, please consider what's in between ()

Headers

Name
Type
Description

content-type*

String

application/json

user-agent*

String

crapsolver-py or crapsolver-go

authorization

String

user:id (your api key)

Request Body

Name
Type
Description

domain*

String

The domain where the captcha is presented. without https://

site_key*

String

The sitekey associated with the captcha.

user_agent*

String

Useragent (use the same to submit token)

proxy*

String

http://user:pass@ip:port or http://ip:port (use the same to submit token)

task_type*

Int

always 0

invisible

Bool

Whether the captcha is invisible.

rqdata

String

Additional request data.

a11y_tfe*

Bool

Whether free text entry is allowed. (always put to true on discord)

turbo

Bool

Enable turbo mode allow you to submit task faster

turbo_st

Int

The turbo mode submit time in milliseconds. (default: 3000)

hc_accessibility

String

hc_accessibility cookie, instant pass normal website.

oneclick_only

Bool

If captcha images spawn, task will be stopped and error returned.

href

String

href of the actual page where captcha spawn, get it via motionData

dr

String

Param you can gather via motionData

exec

Bool

Param you can gather via motionData

{
    "data": [
        {
            "error": "",
            "expiration": 0,
            "id": "task:jc0bk4vjg0g485hlct54",
            "status": 0,
            "success": false,
            "token": ""
        }
    ],
    "success": true
}

Get task result

GET https://node00.nikolahellatrigger.solutions/api/task/ID

ID example: /api/task/task:zgltzcyroee39l0pxzs5

Path Parameters

Name
Type
Description

id*

String

task id

Headers

Name
Type
Description

content-type*

String

application/json

user-agent*

String

crapsolver-py or crapsolver-go


    "data": {
        "error": "error description",
        "expiration": 0,
        "id": "task:jn5s8j7yp9yxptmrl291",
        "status": 2,
        "success": false,
        "token": ""
    },
    "success": true

Last updated