Salamoonder Documentation
HomeLoginRegister
  • Introduction
    • What is Salamoonder?
    • Changelog
  • API
    • createTask: Create Task
    • getTaskResult: Task Result
    • 🧰SDK
  • Tasks
    • πŸ’ΆGet Balance
    • πŸ’­Kasada Solver
    • πŸ“–Twitch
      • πŸͺ›Scraper
      • βš™οΈPublic Integrity
      • 🌊Local Integrity
Powered by GitBook
On this page
  • Create Task​
  • Getting Result​

Was this helpful?

  1. Tasks
  2. Twitch

Public Integrity

The cost for each request in this task is 0.002 cents.

PreviousScraperNextLocal Integrity

Last updated 11 months ago

Was this helpful?

Alert

For this task, use your own proxies; we do not permit IP authentication proxies. If you provide your proxies, format them as username:password@ip:port.

Create the task with the method and get the result with .

Create Task

Create a task with the method to create a task.


Property
Type
Required

proxy

string

Required

access_token

string

Required

deviceId

string

Optional

clientId

string

Optional

Example Request

POST https://salamoonder.com/api/createTask
Host: salamoonder.com
Content-Type: application/json

{
    "api_key": "sr-xxxx-xxxx-xxxx",
    "task": {
        "type": "Twitch_PublicIntegrity",
        "access_token": "your_twitch_account_oauth" 
        "proxy": "ip:port",
        "deviceId": "xxx", 
        "clientId": "xxx"
    }
}

Upon successfully submitting the task to us, you should receive a 'taskId' in the response.

{
  "error_code": 0,
  "error_description": "",
  "taskId": "d4611a5f-9b4e-4f4a-94a2-8303d97562e1"
}

Example Request

POST https://salamoonder.com/api/getTaskResult
Host: salamoonder.com
Content-Type: application/json

{
  "api_key": "xxx",
  "taskId": "d4611a5f-9b4e-4f4a-94a2-8303d97562e1"
}
{
  "errorId": 0,
  "solution": {
    "device_id": "xxxx",
    "integrity_token": "v4.public.xxxx",
    "proxy": "xxxx",
    "user-agent": "xxxx",
    "client-id": "xxx"
  },
  "status": "ready"
}

Example Response

Getting Result

Retrieve the results using the method.

Example Response

πŸ“–
βš™οΈ
createTask
getTaskResult
​
createTask
​
​
​
getTaskResult
​