Data Takeout & Export
Your data belongs to you — including the right to take it with you. HitKeep supports full export on demand: every hit, every event, every user record, in open formats any tool can read. No support ticket. No export quota. No vendor gatekeeping.
This is what data ownership means in practice.
Site Export
Section titled “Site Export”Export the complete analytics history for a site:
Use the generated API reference for the export endpoint:
User Takeout (GDPR Article 20)
Section titled “User Takeout (GDPR Article 20)”Export your own account data — every personal record HitKeep holds about your user account. This fulfills the right to data portability under GDPR Article 20:
API reference:
Supported Formats
Section titled “Supported Formats”| Format | Best for |
|---|---|
parquet | Long-term archiving, DuckDB, Apache Spark, Pandas, data warehouse import |
csv | Excel, Google Sheets, any tabular tool |
json | Programmatic processing, API pipelines |
xlsx | Default for user takeout — opens directly in spreadsheet apps |
Exports land in the archive directory you configured on the instance.
What’s Included
Section titled “What’s Included”Site exports contain every stored hit record with all fields: URL, referrer, country, device type, browser, OS, UTM parameters, and custom event data. Nothing is omitted or sampled. No artificial row limits.
User exports contain your account profile, site memberships, preferences, and API client records.
Querying Your Export
Section titled “Querying Your Export”The Parquet format can be queried locally without importing it anywhere:
# Query directly with DuckDB CLI (free, open source)duckdb -c " SELECT date_trunc('week', timestamp) AS week, referrer_domain, count(*) AS hits FROM 'site_data.parquet' GROUP BY 1, 2 ORDER BY 1 DESC, 3 DESC LIMIT 20;"Migrating to Another Platform
Section titled “Migrating to Another Platform”Typical workflow:
- Export the site via the site takeout endpoint.
- Import the resulting Parquet, CSV, or JSON into your next warehouse or analytics stack.
Your data stays yours — before, during, and after any platform switch.
Related
Section titled “Related”HitKeep Cloud provides automated scheduled exports and encrypted backups, alongside the same self-service on-demand takeout. Your data stays portable regardless of where it’s hosted. Start with HitKeep Cloud →