Skip to content

How to Export Billings

Download your billing data for accounting and reporting.

Via Web Interface

  1. Go to get3w.com/billing
  2. Select the date range
  3. Click Export
  4. Choose format: CSV or PDF

Via API

bash
curl "https://api.get3w.com/api/v3/billings?format=csv&start_date=2024-01-01&end_date=2024-01-31" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -o billings.csv

Export Formats

CSV

Includes columns: Date, Transaction ID, Type, Model, Amount, Balance After

PDF

Formatted invoice-style document suitable for accounting purposes.

Query Parameters

ParameterTypeDescription
formatstringcsv or pdf
start_datestringStart date (YYYY-MM-DD)
end_datestringEnd date (YYYY-MM-DD)

Next Steps

Released under the MIT License.