Download statement PDF
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/partner-statements/{year}-{month}/pdf \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/partner-statements/{year}-{month}/pdf', 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}/pdf"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)"<string>"Statements
Download statement PDF
Downloads one closed month’s statement as PDF, for example /ramp/partner-statements/2026-6/pdf. The year and month are one path segment; the month may be zero padded or not. Returns an application/pdf attachment named partner-statement-2026-06.pdf.
GET
/
ramp
/
partner-statements
/
{year}
-
{month}
/
pdf
Download statement PDF
curl --request GET \
--url https://api.sand.etherfuse.com/ramp/partner-statements/{year}-{month}/pdf \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/partner-statements/{year}-{month}/pdf', 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}/pdf"
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 PDF attachment
The response is of type file.