Wallet
Transfer
This endpoint allows you to transfer asset from a wallet.
POST
/
transfer
Transfer
curl --request POST \
--url https://processor-prod.up.railway.app/transfer \
--header 'Content-Type: application/json' \
--header 'x-service-key: <api-key>' \
--data '
{
"wallet_id": "68bb7d8399900e253084e6f9",
"amount": 100,
"receiver": "0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B",
"asset": "bsc:usdt"
}
'import requests
url = "https://processor-prod.up.railway.app/transfer"
payload = {
"wallet_id": "68bb7d8399900e253084e6f9",
"amount": 100,
"receiver": "0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B",
"asset": "bsc:usdt"
}
headers = {
"x-service-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-service-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
wallet_id: '68bb7d8399900e253084e6f9',
amount: 100,
receiver: '0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B',
asset: 'bsc:usdt'
})
};
fetch('https://processor-prod.up.railway.app/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://processor-prod.up.railway.app/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([
'wallet_id' => '68bb7d8399900e253084e6f9',
'amount' => 100,
'receiver' => '0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B',
'asset' => 'bsc:usdt'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-service-key: <api-key>"
],
]);
$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://processor-prod.up.railway.app/transfer"
payload := strings.NewReader("{\n \"wallet_id\": \"68bb7d8399900e253084e6f9\",\n \"amount\": 100,\n \"receiver\": \"0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B\",\n \"asset\": \"bsc:usdt\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-service-key", "<api-key>")
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://processor-prod.up.railway.app/transfer")
.header("x-service-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"wallet_id\": \"68bb7d8399900e253084e6f9\",\n \"amount\": 100,\n \"receiver\": \"0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B\",\n \"asset\": \"bsc:usdt\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://processor-prod.up.railway.app/transfer")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-service-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"wallet_id\": \"68bb7d8399900e253084e6f9\",\n \"amount\": 100,\n \"receiver\": \"0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B\",\n \"asset\": \"bsc:usdt\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"status": 200,
"message": "Transfer initiated successfully",
"timestamp": "2025-09-09T20:42:10.316Z",
"data": {
"hash": "0x8e935237667da1a673ea84cdaf1750ef9dddb125e075d20657f38b5223674da8",
"link": "https://blockscan.com/tx/0x8e935237667da1a673ea84cdaf1750ef9dddb125e075d20657f38b5223674da8"
}
}Authorizations
Body
application/json
The wallet ID to transfer from
Example:
"68bb7d8399900e253084e6f9"
Amount to transfer.
Use -1 to transfer all available balance.
Example:
100
The recipient address
Example:
"0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B"
The asset to transfer
Available options:
ethereum:usdc, base:usdc, arbitrum:usdc, solana:usdc, bsc:usdc, polygon:usdc, optimism:usdc, avalanche:usdc, ethereum:usdt, arbitrum:usdt, solana:usdt, polygon:usdt, bsc:usdt, optimism:usdt, avalanche:usdt, base:cngn, bsc:cngn Example:
"bsc:usdt"
⌘I
Transfer
curl --request POST \
--url https://processor-prod.up.railway.app/transfer \
--header 'Content-Type: application/json' \
--header 'x-service-key: <api-key>' \
--data '
{
"wallet_id": "68bb7d8399900e253084e6f9",
"amount": 100,
"receiver": "0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B",
"asset": "bsc:usdt"
}
'import requests
url = "https://processor-prod.up.railway.app/transfer"
payload = {
"wallet_id": "68bb7d8399900e253084e6f9",
"amount": 100,
"receiver": "0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B",
"asset": "bsc:usdt"
}
headers = {
"x-service-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-service-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
wallet_id: '68bb7d8399900e253084e6f9',
amount: 100,
receiver: '0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B',
asset: 'bsc:usdt'
})
};
fetch('https://processor-prod.up.railway.app/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://processor-prod.up.railway.app/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([
'wallet_id' => '68bb7d8399900e253084e6f9',
'amount' => 100,
'receiver' => '0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B',
'asset' => 'bsc:usdt'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-service-key: <api-key>"
],
]);
$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://processor-prod.up.railway.app/transfer"
payload := strings.NewReader("{\n \"wallet_id\": \"68bb7d8399900e253084e6f9\",\n \"amount\": 100,\n \"receiver\": \"0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B\",\n \"asset\": \"bsc:usdt\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-service-key", "<api-key>")
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://processor-prod.up.railway.app/transfer")
.header("x-service-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"wallet_id\": \"68bb7d8399900e253084e6f9\",\n \"amount\": 100,\n \"receiver\": \"0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B\",\n \"asset\": \"bsc:usdt\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://processor-prod.up.railway.app/transfer")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-service-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"wallet_id\": \"68bb7d8399900e253084e6f9\",\n \"amount\": 100,\n \"receiver\": \"0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B\",\n \"asset\": \"bsc:usdt\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"status": 200,
"message": "Transfer initiated successfully",
"timestamp": "2025-09-09T20:42:10.316Z",
"data": {
"hash": "0x8e935237667da1a673ea84cdaf1750ef9dddb125e075d20657f38b5223674da8",
"link": "https://blockscan.com/tx/0x8e935237667da1a673ea84cdaf1750ef9dddb125e075d20657f38b5223674da8"
}
}