Data Export
Export your Zenovay analytics data to CSV or JSON for use in spreadsheets, custom reports, and external integrations.
Overview
Zenovay provides several data export options so you can analyze your data in external tools, build custom reports, or feed 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
- Visitor Data: Visitor-level information, subject to your privacy settings
- 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:
- Open Domains and select your site
- 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. Configure it per website: open Domains, select your site to open its settings, then open the warehouse export settings.
- 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.
Privacy Considerations
All exports respect your privacy settings and are designed for GDPR readiness. Visitor-level personal data fields are only included when your site's privacy configuration permits them.
Need help with data exports? Contact support@zenovay.com.