List orders
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/orders \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/orders"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"amountInFiat": "1000.00",
"amountInTokens": "58.42",
"bankAccountId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"blockchain": "stellar",
"completedAt": "2026-05-02T09:16:30Z",
"createdAt": "2026-05-02T09:15:00Z",
"customerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"depositAccountHolder": "Etherfuse MX",
"depositBankName": "Example Bank",
"depositClabe": "646180157000000004",
"etherfuseMidMarketRate": "17.15",
"exchangeRate": "17.12",
"feeAmountInFiat": "2.00",
"feeBps": 20,
"orderId": "7b9c1e2d-3f4a-5b6c-7d8e-9f0a1b2c3d4e",
"orderType": "onramp",
"sourceAsset": "MXN",
"status": "completed",
"statusPage": "https://pay.etherfuse.com/order/7b9c1e2d-3f4a-5b6c-7d8e-9f0a1b2c3d4e",
"stellarClaimTransaction": "AAAAAgAAAABk...base64_xdr...",
"stellarClaimableBalanceId": "00000000abc1230000000000000000000000000000000000000000000000000000",
"targetAsset": "USDC:GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5",
"updatedAt": "2026-05-02T09:16:30Z",
"walletId": "c3d4e5f6-a7b8-9012-cdef-123456789012"
}
],
"pageNumber": 0,
"pageSize": 30,
"totalItems": 42,
"totalPages": 2,
"next": "<string>"
}Orders
List orders
Returns the first page of orders with defaults (pageSize 30, pageNumber 0, no filters). Use the POST variant for pagination and date filtering.
Returns on/off-ramp orders only — swaps are not included. Track swaps via swap_updated webhooks.
GET
/
ramp
/
orders
List orders
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/orders \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/orders"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"amountInFiat": "1000.00",
"amountInTokens": "58.42",
"bankAccountId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"blockchain": "stellar",
"completedAt": "2026-05-02T09:16:30Z",
"createdAt": "2026-05-02T09:15:00Z",
"customerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"depositAccountHolder": "Etherfuse MX",
"depositBankName": "Example Bank",
"depositClabe": "646180157000000004",
"etherfuseMidMarketRate": "17.15",
"exchangeRate": "17.12",
"feeAmountInFiat": "2.00",
"feeBps": 20,
"orderId": "7b9c1e2d-3f4a-5b6c-7d8e-9f0a1b2c3d4e",
"orderType": "onramp",
"sourceAsset": "MXN",
"status": "completed",
"statusPage": "https://pay.etherfuse.com/order/7b9c1e2d-3f4a-5b6c-7d8e-9f0a1b2c3d4e",
"stellarClaimTransaction": "AAAAAgAAAABk...base64_xdr...",
"stellarClaimableBalanceId": "00000000abc1230000000000000000000000000000000000000000000000000000",
"targetAsset": "USDC:GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5",
"updatedAt": "2026-05-02T09:16:30Z",
"walletId": "c3d4e5f6-a7b8-9012-cdef-123456789012"
}
],
"pageNumber": 0,
"pageSize": 30,
"totalItems": 42,
"totalPages": 2,
"next": "<string>"
}Authorizations
API key sent in the Authorization header.
Response
200 - application/json
Paginated orders
A page of orders.
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.