💶Get Balance

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

Create Task

Create a task with the createTask method to create a task.


Example Request

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

{
    "api_key": "sr-xxxx-xxxx-xxxx",
    "task": {
        "type": "getBalance"
    }
}

Upon successfully submitting the task to us, you should receive your wallet in the response.

Example Response

{
  "error_code": 0,
  "error_description": "",
  "wallet": "499.81070"
}

Last updated