Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add import and export overview to 'Start here' #10045

Merged
merged 6 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions contents/docs/getting-started/data-import-export.mdx
daniloc marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: Data import and export
---

Beyond the everyday capture of user events, there are many ways to get bulk data into and out of PostHog.

## Import

### Sources

[Combine data](/docs/cdp/sources) from your database, Stripe, or even a bucket full of CSVs. Join it to your existing person and event data with [data warehouse](/docs/data-warehouse).

### Migrations

PostHog offers [migration guides](/docs/migrate) to help you move your data from other providers.

## Export

### Real-time destinations

[Export data as it arrives](/docs/cdp/destinations). Easily set up filters to get just the events you’re looking for. Choose from dozens of destinations, customize our webhook destination, or even build your own with a bit of code.

### Batch exports

Schedule [bulk data exports](/docs/cdp/batch-exports) to select destinations, including Postgres, S3, and more.

### Query API

A full-featured [query API](/docs/api/query) allows you to programmatically extract data to use in your own applications.

### Export to CSV and more

Your insights and data tables within PostHog can be exported to CSV, with additional options like PNG for visualizations.
4 changes: 4 additions & 0 deletions src/navs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1207,6 +1207,10 @@ export const docsMenu = {
name: 'Enabling beta features',
url: '/docs/getting-started/enable-betas',
},
{
name: 'Data import and export',
url: '/docs/getting-started/data-import-export',
},
],
},
{
Expand Down
Loading