List customers
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/customers \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/customers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/customers"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"createdAt": "2026-05-01T14:30:00Z",
"customerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"displayName": "Ana García",
"updatedAt": "2026-05-02T09:15:00Z"
}
],
"pageNumber": 0,
"pageSize": 30,
"totalItems": 42,
"totalPages": 2,
"next": "<string>"
}Customers
List customers
Returns the first page of customers with defaults (pageSize 30, pageNumber 0, no filters). Use the POST variant for pagination and date filtering.
GET
/
ramp
/
customers
List customers
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/customers \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/customers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/customers"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"createdAt": "2026-05-01T14:30:00Z",
"customerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"displayName": "Ana García",
"updatedAt": "2026-05-02T09:15:00Z"
}
],
"pageNumber": 0,
"pageSize": 30,
"totalItems": 42,
"totalPages": 2,
"next": "<string>"
}Authorizations
API key sent in the Authorization header.
Response
200 - application/json
Paginated customers
A page of customers.
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.