Reese84
Solve Incapsula Reese84 challenges with our simple and streamlined API.
Parameters
website
String
Yes
submit_payload
Boolean
Yes
user_agent
String
No
You can send us a user agent. It needs to be a Chrome on Windows user agent, and these have given the best success rate.
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36Creating a Task
Send a POST request to create a new Reese84 solving task using the createTask method.
Request
POST https://salamoonder.com/api/createTask
Host: salamoonder.com
Content-Type: application/json
{
"api_key": "YOUR_API_KEY",
"task": {
"type": "IncapsulaReese84Solver",
"website": "https://www.pokemoncenter.com/",
"submit_payload": true,
//"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36"
}
}Response
Response Fields:
taskId- Unique identifier for this task. Use this to retrieve results.
Getting Results
Retrieve the solution using the getTaskResult method.
Request
Response (submit_payload: true)
When submit_payload is set to true, you receive a ready-to-submit token:
Response Fields:
token- Ready-to-use Reese84 token for submissionrenewInSec- Token validity period in secondsuser-agent- user-agent that was used to make this token
Response (submit_payload: false)
When submit_payload is set to false, you receive the raw payload for manual processing:
Response Fields:
payload- Raw payload for manual processinguser-agent- user-agent that was used to make this payload.accept-language- Language header to use
What if your response doesn't match ours?
if you get Failed to find reese84 script URL, please reach out to support. in the solution field please change your request body to
This is required when the target website can’t be reached. If the site isn’t accessible, the payload can’t be sent either. Contact our support team if you still want to use the submit payload function, and we’ll set up a custom configuration for you.
Quick Start Example
Here's a proof-of-concept Python example to get you started:
This example can be adapted to any programming language.
Last updated
Was this helpful?