cURL
curl --request POST \
--url https://api.woox.io/v3/asset/transfer \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>' \
--data '
{
"token": "<string>",
"amount": 123,
"from": {
"applicationId": "<string>"
},
"to": {
"applicationId": "<string>"
}
}
'import requests
url = "https://api.woox.io/v3/asset/transfer"
payload = {
"token": "<string>",
"amount": 123,
"from": { "applicationId": "<string>" },
"to": { "applicationId": "<string>" }
}
headers = {
"x-api-key": "<x-api-key>",
"x-api-signature": "<x-api-signature>",
"x-api-timestamp": "<x-api-timestamp>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-api-key': '<x-api-key>',
'x-api-signature': '<x-api-signature>',
'x-api-timestamp': '<x-api-timestamp>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
token: '<string>',
amount: 123,
from: {applicationId: '<string>'},
to: {applicationId: '<string>'}
})
};
fetch('https://api.woox.io/v3/asset/transfer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.woox.io/v3/asset/transfer",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'token' => '<string>',
'amount' => 123,
'from' => [
'applicationId' => '<string>'
],
'to' => [
'applicationId' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <x-api-key>",
"x-api-signature: <x-api-signature>",
"x-api-timestamp: <x-api-timestamp>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.woox.io/v3/asset/transfer"
payload := strings.NewReader("{\n \"token\": \"<string>\",\n \"amount\": 123,\n \"from\": {\n \"applicationId\": \"<string>\"\n },\n \"to\": {\n \"applicationId\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<x-api-key>")
req.Header.Add("x-api-signature", "<x-api-signature>")
req.Header.Add("x-api-timestamp", "<x-api-timestamp>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.woox.io/v3/asset/transfer")
.header("x-api-key", "<x-api-key>")
.header("x-api-signature", "<x-api-signature>")
.header("x-api-timestamp", "<x-api-timestamp>")
.header("Content-Type", "application/json")
.body("{\n \"token\": \"<string>\",\n \"amount\": 123,\n \"from\": {\n \"applicationId\": \"<string>\"\n },\n \"to\": {\n \"applicationId\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.woox.io/v3/asset/transfer")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<x-api-key>'
request["x-api-signature"] = '<x-api-signature>'
request["x-api-timestamp"] = '<x-api-timestamp>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"token\": \"<string>\",\n \"amount\": 123,\n \"from\": {\n \"applicationId\": \"<string>\"\n },\n \"to\": {\n \"applicationId\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"timestamp": 123,
"data": {
"id": 123
}
}Assets
Transfer assets
transfer assets
POST
/
v3
/
asset
/
transfer
cURL
curl --request POST \
--url https://api.woox.io/v3/asset/transfer \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>' \
--data '
{
"token": "<string>",
"amount": 123,
"from": {
"applicationId": "<string>"
},
"to": {
"applicationId": "<string>"
}
}
'import requests
url = "https://api.woox.io/v3/asset/transfer"
payload = {
"token": "<string>",
"amount": 123,
"from": { "applicationId": "<string>" },
"to": { "applicationId": "<string>" }
}
headers = {
"x-api-key": "<x-api-key>",
"x-api-signature": "<x-api-signature>",
"x-api-timestamp": "<x-api-timestamp>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-api-key': '<x-api-key>',
'x-api-signature': '<x-api-signature>',
'x-api-timestamp': '<x-api-timestamp>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
token: '<string>',
amount: 123,
from: {applicationId: '<string>'},
to: {applicationId: '<string>'}
})
};
fetch('https://api.woox.io/v3/asset/transfer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.woox.io/v3/asset/transfer",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'token' => '<string>',
'amount' => 123,
'from' => [
'applicationId' => '<string>'
],
'to' => [
'applicationId' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <x-api-key>",
"x-api-signature: <x-api-signature>",
"x-api-timestamp: <x-api-timestamp>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.woox.io/v3/asset/transfer"
payload := strings.NewReader("{\n \"token\": \"<string>\",\n \"amount\": 123,\n \"from\": {\n \"applicationId\": \"<string>\"\n },\n \"to\": {\n \"applicationId\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<x-api-key>")
req.Header.Add("x-api-signature", "<x-api-signature>")
req.Header.Add("x-api-timestamp", "<x-api-timestamp>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.woox.io/v3/asset/transfer")
.header("x-api-key", "<x-api-key>")
.header("x-api-signature", "<x-api-signature>")
.header("x-api-timestamp", "<x-api-timestamp>")
.header("Content-Type", "application/json")
.body("{\n \"token\": \"<string>\",\n \"amount\": 123,\n \"from\": {\n \"applicationId\": \"<string>\"\n },\n \"to\": {\n \"applicationId\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.woox.io/v3/asset/transfer")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<x-api-key>'
request["x-api-signature"] = '<x-api-signature>'
request["x-api-timestamp"] = '<x-api-timestamp>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"token\": \"<string>\",\n \"amount\": 123,\n \"from\": {\n \"applicationId\": \"<string>\"\n },\n \"to\": {\n \"applicationId\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"timestamp": 123,
"data": {
"id": 123
}
}Limit: 20 requests per 60 seconds
Initiate a token withdrawal request
Initiate a token withdrawal request
Headers
api-key
Example:
"abcdef123456"
api-signature
Example:
"signaturestring"
api-timestamp
Example:
"1718943200000"
Body
application/json
⌘I