Get Withdrawal
curl --request GET \
--url https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}', 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.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-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"
"net/http"
"io"
)
func main() {
url := "https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"uuid": "3af1c2d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
"actor": "merchant",
"balance_type": "usdt",
"token": "USDT",
"network": "TRC20",
"address": "TQ...destination",
"amount": "500.00",
"network_commission": "1.00",
"amount_to_send": "499.00",
"status": "approved",
"created_at": "2026-07-16T09:24:11Z",
"logo_url": "https://cdn.manexx.com/networks/trc20.png",
"tx_hash": "a1b2c3...",
"reject_reason": "<string>",
"processed_at": "2026-07-16T09:40:02Z"
},
"success": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Merchant API
Get Withdrawal
GET
/
api
/
v1
/
external
/
withdrawals
/
{withdrawal_uuid}
Get Withdrawal
curl --request GET \
--url https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}', 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.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-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"
"net/http"
"io"
)
func main() {
url := "https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.manexx.com/api/v1/external/withdrawals/{withdrawal_uuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"uuid": "3af1c2d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
"actor": "merchant",
"balance_type": "usdt",
"token": "USDT",
"network": "TRC20",
"address": "TQ...destination",
"amount": "500.00",
"network_commission": "1.00",
"amount_to_send": "499.00",
"status": "approved",
"created_at": "2026-07-16T09:24:11Z",
"logo_url": "https://cdn.manexx.com/networks/trc20.png",
"tx_hash": "a1b2c3...",
"reject_reason": "<string>",
"processed_at": "2026-07-16T09:40:02Z"
},
"success": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}⌘I
.webp?fit=max&auto=format&n=O6SgNi-K863CxPv7&q=85&s=5a022604a7f294c9858b55256ba8a593)
