Data Export
Roadmap
Built-in data export is not yet shipped in v0.1.0. Today the only way to get data out is through the JSON REST API.
What HH-DM ships
For reference, HH Data Management supports three export formats:
- Excel — to
.xlsx/.xlsm, optionally into an existing workbook template - JSON — full or filtered
- XML — for legacy integrations
What Race Platform will support
The export surface will be wired in Phase 5 (Plugin Marketplace + KPI Worker phase) with the following formats:
| Format | Purpose | Status |
|---|---|---|
| JSON | Full or filtered export | Direct via API today; bulk export UI coming |
| CSV | Single-table export | Roadmap |
Excel (.xlsx) | Multi-tab workbook with formatting | Roadmap |
| XML | Legacy compatibility | Roadmap (low priority) |
What you can do today
Pull data via the REST API (see API Endpoints):
# All laps for a session
curl -H "Authorization: Bearer $TOKEN" \
"http://localhost:6161/laps?sessionId=$SESSION_ID" \
-o laps.json
# All weather rows for an event
curl -H "Authorization: Bearer $TOKEN" \
"http://localhost:6161/weather?eventId=$EVENT_ID" \
-o weather.json
The Event Report screen (/analysis/event-report) also
supports CSV-style browser download of the pivot grid.
What's coming
- In-app Export menu with format picker and field selector
- Saved export profiles ("Driver pace summary every Sunday")
- Excel template binding — populate a customer-supplied
.xlsxtemplate - Scheduled exports via Cloudflare Queues