Download statement CSV
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/partner-statements/{year}-{month}/csv \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/partner-statements/{year}-{month}/csv', 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/{year}-{month}/csv"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)"<string>"Statements
Download statement CSV
Downloads one closed month’s statement as CSV, for example /ramp/partner-statements/2026-6/csv. The year and month are one path segment; the month may be zero padded or not. Returns a text/csv attachment named partner-statement-2026-06.csv.
GET
/
ramp
/
partner-statements
/
{year}
-
{month}
/
csv
Download statement CSV
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/partner-statements/{year}-{month}/csv \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/partner-statements/{year}-{month}/csv', 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/{year}-{month}/csv"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)"<string>"Authorizations
API key sent in the Authorization header.
Path Parameters
The four digit statement year, for example 2026
The statement month, 1 through 12
Required range:
1 <= x <= 12Response
The statement as a CSV attachment
The response is of type file.