💭Kasada Solver
The cost for each request in this task is 0.002 cents.
Make sure to not use the x-kpsdk-v when submitting the solution to the target site. More information is in this message https://t.me/salamoonder_telegram/1107
Create Task
Create a task with the createTask method to create a task.
Task Data
Property
Type
Required
pjs
string
Required
cdOnly
string
Required
Supported Links
The API supports captcha handling on the following domains:
If you don't see a site you want supported, contact our support team and we'll add it for you if there's a valid use case.
Example Request
POST https://salamoonder.com/api/createTask
Host: salamoonder.com
Content-Type: application/json
{
"api_key": "YOUR_API_KEY",
"task": {
"type": "KasadaCaptchaSolver",
"pjs": "https://example.com/xxxx/p.js",
"cdOnly": "true/false"
}
}
Upon successfully submitting the task to us, you should receive a 'taskId' in the response.
Example Response
{
"error_code": 0,
"error_description": "",
"taskId": "d4611a5f-9b4e-4f4a-94a2-8303d97562e1"
}
Getting Result
Retrieve the results using the getTaskResult method.
Example Request
POST https://salamoonder.com/api/getTaskResult
Host: salamoonder.com
Content-Type: application/json
{
"api_key": "",
"taskId": "d4611a5f-9b4e-4f4a-94a2-8303d97562e1"
}
Example Response
{
"errorId": 0,
"solution": {
"user-agent": "",
"x-is-human": "",
"x-kpsdk-cd": "",
"x-kpsdk-cr": "",
"x-kpsdk-ct": "",
"x-kpsdk-r": "",
"x-kpsdk-st": "1704673650160"
},
"status": "ready"
}
Last updated
Was this helpful?