Wallet inquiry
curl --request POST \
--url https://api.example.com/api/v1/wallet/inquiry \
--header 'Content-Type: application/json' \
--data '
{
"paymentRequestId": "<string>",
"merchantInfo": {
"merchantId": 1000000201,
"subMerchantId": "<string>"
},
"orderCurrency": "USDC"
}
'import requests
url = "https://api.example.com/api/v1/wallet/inquiry"
payload = {
"paymentRequestId": "<string>",
"merchantInfo": {
"merchantId": 1000000201,
"subMerchantId": "<string>"
},
"orderCurrency": "USDC"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
paymentRequestId: '<string>',
merchantInfo: {merchantId: 1000000201, subMerchantId: '<string>'},
orderCurrency: 'USDC'
})
};
fetch('https://api.example.com/api/v1/wallet/inquiry', 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.example.com/api/v1/wallet/inquiry",
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([
'paymentRequestId' => '<string>',
'merchantInfo' => [
'merchantId' => 1000000201,
'subMerchantId' => '<string>'
],
'orderCurrency' => 'USDC'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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.example.com/api/v1/wallet/inquiry"
payload := strings.NewReader("{\n \"paymentRequestId\": \"<string>\",\n \"merchantInfo\": {\n \"merchantId\": 1000000201,\n \"subMerchantId\": \"<string>\"\n },\n \"orderCurrency\": \"USDC\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.example.com/api/v1/wallet/inquiry")
.header("Content-Type", "application/json")
.body("{\n \"paymentRequestId\": \"<string>\",\n \"merchantInfo\": {\n \"merchantId\": 1000000201,\n \"subMerchantId\": \"<string>\"\n },\n \"orderCurrency\": \"USDC\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/wallet/inquiry")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"paymentRequestId\": \"<string>\",\n \"merchantInfo\": {\n \"merchantId\": 1000000201,\n \"subMerchantId\": \"<string>\"\n },\n \"orderCurrency\": \"USDC\"\n}"
response = http.request(request)
puts response.read_body{
"code": 0,
"msg": "success",
"data": {
"network": "eip155:8453",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0x..."
}
}Configuration
Wallet inquiry
Query on-chain wallet / receiving address (network/asset/payTo) for x402 stablecoin payin
POST
/
api
/
v1
/
wallet
/
inquiry
Wallet inquiry
curl --request POST \
--url https://api.example.com/api/v1/wallet/inquiry \
--header 'Content-Type: application/json' \
--data '
{
"paymentRequestId": "<string>",
"merchantInfo": {
"merchantId": 1000000201,
"subMerchantId": "<string>"
},
"orderCurrency": "USDC"
}
'import requests
url = "https://api.example.com/api/v1/wallet/inquiry"
payload = {
"paymentRequestId": "<string>",
"merchantInfo": {
"merchantId": 1000000201,
"subMerchantId": "<string>"
},
"orderCurrency": "USDC"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
paymentRequestId: '<string>',
merchantInfo: {merchantId: 1000000201, subMerchantId: '<string>'},
orderCurrency: 'USDC'
})
};
fetch('https://api.example.com/api/v1/wallet/inquiry', 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.example.com/api/v1/wallet/inquiry",
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([
'paymentRequestId' => '<string>',
'merchantInfo' => [
'merchantId' => 1000000201,
'subMerchantId' => '<string>'
],
'orderCurrency' => 'USDC'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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.example.com/api/v1/wallet/inquiry"
payload := strings.NewReader("{\n \"paymentRequestId\": \"<string>\",\n \"merchantInfo\": {\n \"merchantId\": 1000000201,\n \"subMerchantId\": \"<string>\"\n },\n \"orderCurrency\": \"USDC\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.example.com/api/v1/wallet/inquiry")
.header("Content-Type", "application/json")
.body("{\n \"paymentRequestId\": \"<string>\",\n \"merchantInfo\": {\n \"merchantId\": 1000000201,\n \"subMerchantId\": \"<string>\"\n },\n \"orderCurrency\": \"USDC\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/wallet/inquiry")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"paymentRequestId\": \"<string>\",\n \"merchantInfo\": {\n \"merchantId\": 1000000201,\n \"subMerchantId\": \"<string>\"\n },\n \"orderCurrency\": \"USDC\"\n}"
response = http.request(request)
puts response.read_body{
"code": 0,
"msg": "success",
"data": {
"network": "eip155:8453",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0x..."
}
}Body
application/json
Wallet / on-chain receiving address inquiry request
Payment request id sent from Merchant, same value as order/create. Used for correlation and idempotency.
Maximum string length:
32Merchant info
Show child attributes
Show child attributes
Order currency for the resource pricing. Phase 1 supports USDC only (same-currency USDC→USDC).
Maximum string length:
12Example:
"USDC"
⌘I