List Address Book
curl --request GET \
--url https://api-sandbox.uqpaytech.com/api/v1/ramp/wallet_address \
--header 'x-auth-token: <api-key>'import requests
url = "https://api-sandbox.uqpaytech.com/api/v1/ramp/wallet_address"
headers = {"x-auth-token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-auth-token': '<api-key>'}};
fetch('https://api-sandbox.uqpaytech.com/api/v1/ramp/wallet_address', 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-sandbox.uqpaytech.com/api/v1/ramp/wallet_address",
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-auth-token: <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-sandbox.uqpaytech.com/api/v1/ramp/wallet_address"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-auth-token", "<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-sandbox.uqpaytech.com/api/v1/ramp/wallet_address")
.header("x-auth-token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.uqpaytech.com/api/v1/ramp/wallet_address")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-auth-token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 200,
"message": "Success",
"data": {
"data": [
{
"account_id": "9276ffba-7b6c-4d1d-b4e9-b4c8fc435160",
"address_id": "72612f65-6026-4cd0-b184-6c48f4850590",
"address_type": 2000,
"address_label": "My USDT Wallet",
"network": "ETH",
"currency": "USDT",
"wallet_address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"create_time": "2026-01-16 14:30:00",
"address_status": 1,
"is_owner": 0,
"receiver_name": "John Doe",
"verification_status": 1,
"need_travel_rule": true,
"meta_data": {
"wallet_type": "hosted",
"address_party": "third_party",
"beneficiary_information": {
"entity_type": "individual",
"first_name": "John",
"last_name": "Doe",
"company_name": "Acme Pte Ltd",
"country": "sg",
"city": "Singapore",
"vasp_id": "I1QNLP",
"vasp_name": "Binance",
"id_type": "<string>",
"id_primary": "<string>"
}
},
"message": "<string>"
}
],
"total_pages": 123,
"total_items": 123
}
}Address Book
List Address Book
查询钱包地址簿列表,支持多条件筛选。 Stablecoin Account API 发布方免责声明
GET
/
v1
/
ramp
/
wallet_address
List Address Book
curl --request GET \
--url https://api-sandbox.uqpaytech.com/api/v1/ramp/wallet_address \
--header 'x-auth-token: <api-key>'import requests
url = "https://api-sandbox.uqpaytech.com/api/v1/ramp/wallet_address"
headers = {"x-auth-token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-auth-token': '<api-key>'}};
fetch('https://api-sandbox.uqpaytech.com/api/v1/ramp/wallet_address', 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-sandbox.uqpaytech.com/api/v1/ramp/wallet_address",
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-auth-token: <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-sandbox.uqpaytech.com/api/v1/ramp/wallet_address"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-auth-token", "<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-sandbox.uqpaytech.com/api/v1/ramp/wallet_address")
.header("x-auth-token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.uqpaytech.com/api/v1/ramp/wallet_address")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-auth-token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 200,
"message": "Success",
"data": {
"data": [
{
"account_id": "9276ffba-7b6c-4d1d-b4e9-b4c8fc435160",
"address_id": "72612f65-6026-4cd0-b184-6c48f4850590",
"address_type": 2000,
"address_label": "My USDT Wallet",
"network": "ETH",
"currency": "USDT",
"wallet_address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"create_time": "2026-01-16 14:30:00",
"address_status": 1,
"is_owner": 0,
"receiver_name": "John Doe",
"verification_status": 1,
"need_travel_rule": true,
"meta_data": {
"wallet_type": "hosted",
"address_party": "third_party",
"beneficiary_information": {
"entity_type": "individual",
"first_name": "John",
"last_name": "Doe",
"company_name": "Acme Pte Ltd",
"country": "sg",
"city": "Singapore",
"vasp_id": "I1QNLP",
"vasp_name": "Binance",
"id_type": "<string>",
"id_primary": "<string>"
}
},
"message": "<string>"
}
],
"total_pages": 123,
"total_items": 123
}
}授权
UQPay 提供的用于登录的 API Token。
请求头
指定代表哪个子账户发起请求。应设置为 account_id,可通过 List Connected Accounts 接口获取。若省略或为空,则请求以主账户身份执行。
更多信息参见 Connected Accounts。
查询参数
页码,默认 1
必填范围:
x >= 1每页条数,默认 10
必填范围:
x >= 1按币种筛选
按网络筛选
按地址类型筛选(1000=交易所,2000=个人)
可用选项:
1000, 2000 按地址状态筛选
按验证状态筛选(1=已验证,2=失败)
可用选项:
1, 2 按钱包地址筛选
按地址标签筛选
返回哪一类条目。whitelist(默认)返回提现目的地址;deposit_sender 返回通过 Submit Deposit Sender Travel Rule 补录的充值来源条目。不传则保持仅返回提现地址的原有行为。
可用选项:
whitelist, deposit_sender ⌘I

