List partner statements
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/partner-statements \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/partner-statements', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/partner-statements"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"statements": [
{
"periodYear": 2026,
"periodMonth": 6,
"status": "closed",
"closedAt": "2026-07-04T17:42:10.427124+00:00",
"paidAt": null,
"payoutTotal": null,
"payoutCurrency": null
},
{
"periodYear": 2026,
"periodMonth": 5,
"status": "paid",
"closedAt": "2026-06-04T17:42:10.427124+00:00",
"paidAt": "2026-06-09T17:42:10.427124+00:00",
"payoutTotal": "1543.22",
"payoutCurrency": "USDC"
}
]
}Statements
List partner statements
Returns your monthly revenue share statements, newest first. The organization comes from your API key.
Only closed months are listed. A month still open does not appear and its CSV and PDF return 404, so the month in progress is never visible. A closed month carries no amount until a payout is recorded, because the payout is converted at a rate struck at that time.
GET
/
ramp
/
partner-statements
List partner statements
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/partner-statements \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/partner-statements', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/partner-statements"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"statements": [
{
"periodYear": 2026,
"periodMonth": 6,
"status": "closed",
"closedAt": "2026-07-04T17:42:10.427124+00:00",
"paidAt": null,
"payoutTotal": null,
"payoutCurrency": null
},
{
"periodYear": 2026,
"periodMonth": 5,
"status": "paid",
"closedAt": "2026-06-04T17:42:10.427124+00:00",
"paidAt": "2026-06-09T17:42:10.427124+00:00",
"payoutTotal": "1543.22",
"payoutCurrency": "USDC"
}
]
}