Data Export
Export your Zenovay analytics data to CSV or JSON for use in spreadsheets, custom reports, and external integrations.
Overview
Zenovay provides flexible data export options to help you analyze your data in external tools, create custom reports, or integrate with your existing data infrastructure.
Export Formats
CSV Export
Download your analytics data as CSV files for use in Excel, Google Sheets, or other spreadsheet applications.
JSON Export
Get structured JSON data for programmatic access and custom integrations.
API Access
Use our REST API to pull data programmatically into your own systems.
Available Data
You can export:
- Page Views: Complete page view history with timestamps
- Custom Events: All tracked custom events
- Visiteur Data: Anonymized visitor information
- Conversion Data: Goal completions and conversion metrics
- Traffic Sources: Referrer and campaign data
- Device Information: Browser, OS, and device data
Export Methods
Dashboard Export
Use the Zenovay dashboard to export data with custom date ranges and filters:
- Navigate to Analyse > Data Export
- Select your date range
- Choose data types to export
- Select format (CSV or JSON)
- Download your data
API Export
Use the Zenovay External API to retrieve analytics data programmatically:
const response = await fetch(
'https://api.zenovay.com/api/external/v1/analytics/YOUR_WEBSITE_ID?start=2025-01-01&end=2025-01-31',
{
method: 'GET',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
const data = await response.json();
See API Documentation for complete details on available endpoints including visitor data, page statistics, and geographic breakdowns.
Scheduled Exports
Set up automated weekly or monthly exports delivered by email, or via continuous push to your own AWS S3 bucket on the Scale plan (see Warehouse Export below).
Warehouse Export (Scale plan)
Push aggregated analytics_daily rows to your own AWS S3 bucket on a schedule (hourly or daily). Bring your own bucket and IAM credentials; Zenovay signs the PUT requests with AWS SigV4. Configured per team or per website under Settings → Warehouse.
- Format: CSV, one row per website per date
- Object key:
s3://<bucket>/<prefix><team_id>/<date>/analytics_daily.csv— idempotent, overwrites cleanly on re-runs - Required IAM permission:
s3:PutObjecton the prefix you configure (no listing, reading, or deletion) - Plan: Scale or Enterprise
BigQuery and Snowflake support are on the roadmap; the same pipeline will ship them in a follow-up release.
Confidentialité Considerations
All exports respect your privacy settings and comply with RGPD/CCPA requirements. Personal data is never included without explicit consent.
Need help with data exports? Contact [email protected].