Search customer wallets
curl --request POST \
--url https://api.sand.etherfuse.com/ramp/customer/{customer_id}/wallets \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"pageNumber": 0,
"pageSize": 30
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({pageNumber: 0, pageSize: 30})
};
fetch('https://api.sand.etherfuse.com/ramp/customer/{customer_id}/wallets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/customer/{customer_id}/wallets"
payload = {
"pageNumber": 0,
"pageSize": 30
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"items": [
{
"blockchain": "stellar",
"claimedOwnership": true,
"createdAt": "2026-05-01T14:30:00Z",
"customerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"publicKey": "GDUKMGUGD3V6VXTU2RLAUM7A2FABLMHCPWTMDHKP7HHJ6FCZKEY4PVWL",
"updatedAt": "2026-05-02T09:15:00Z",
"walletId": "c3d4e5f6-a7b8-9012-cdef-123456789012"
}
],
"pageNumber": 0,
"pageSize": 30,
"totalItems": 42,
"totalPages": 2,
"next": "<string>"
}Wallets
Search customer wallets
Retrieves crypto wallets for a specific customer. The request body is optional — omitting it returns the first page with defaults (pageSize 30, pageNumber 0, no filters).
POST
/
ramp
/
customer
/
{customer_id}
/
wallets
Search customer wallets
curl --request POST \
--url https://api.sand.etherfuse.com/ramp/customer/{customer_id}/wallets \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"pageNumber": 0,
"pageSize": 30
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({pageNumber: 0, pageSize: 30})
};
fetch('https://api.sand.etherfuse.com/ramp/customer/{customer_id}/wallets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/customer/{customer_id}/wallets"
payload = {
"pageNumber": 0,
"pageSize": 30
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"items": [
{
"blockchain": "stellar",
"claimedOwnership": true,
"createdAt": "2026-05-01T14:30:00Z",
"customerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"publicKey": "GDUKMGUGD3V6VXTU2RLAUM7A2FABLMHCPWTMDHKP7HHJ6FCZKEY4PVWL",
"updatedAt": "2026-05-02T09:15:00Z",
"walletId": "c3d4e5f6-a7b8-9012-cdef-123456789012"
}
],
"pageNumber": 0,
"pageSize": 30,
"totalItems": 42,
"totalPages": 2,
"next": "<string>"
}Authorizations
API key sent in the Authorization header.
Path Parameters
The customer (child org) ID. Must belong to the caller's organization or a direct child.
Body
application/json
Response
Paginated crypto wallets
A page of crypto wallets.
The items on this page.
Show child attributes
Show child attributes
Zero-based index of this page.
Required range:
x >= 0Example:
0
Number of items per page.
Required range:
x >= 0Example:
30
Total number of items across all pages.
Required range:
x >= 0Example:
42
Total number of pages.
Required range:
x >= 0Example:
2
URL to fetch the next page of results, if available.