cURL
curl --request POST \ --url https://api.solarsentra.io/v1/export/transactions \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "walletId": "wlt_abc123def456", "format": "csv", "startDate": "2023-12-25", "endDate": "2023-12-25", "includeMetadata": true }'
{ "exportId": "exp_abc123", "status": "processing", "estimatedTime": 45, "downloadUrl": "https://api.solarsentra.io/downloads/exp_abc123.csv", "expiresAt": "2023-11-07T05:31:56Z" }
Export transaction data in various formats
JWT Bearer token authentication. Include the token in the Authorization header
"wlt_abc123def456"
json
csv
parquet
"csv"
true
Export initiated successfully
"exp_abc123"
"processing"
Estimated completion time in seconds
45
"https://api.solarsentra.io/downloads/exp_abc123.csv"