Full history
Export every chat, transaction, fan and subscriber since day one.
Fanvue data download is a no-code export tool plus programmatic endpoints for chats, transactions, fans, subscribers, vault media and analytics - full history, incremental syncs, and warehouse-ready formats.
// data-export.ts - request a Parquet export to S3
await fetch("https://api.apifanvue.com/v1/tools/data-export", {
method: "POST",
headers: { "Authorization": "Bearer sk_live_...", "Content-Type": "application/json" },
body: JSON.stringify({
tables: ["chats", "transactions", "fans", "subscribers"],
format: "parquet",
destination: { type: "s3", bucket: "agency-warehouse", prefix: "fanvue/" },
}),
});
// Response
{
"job_id": "exp_9f21ac",
"status": "queued",
"eta_seconds": 42,
"webhook": "https://api.apifanvue.com/v1/webhooks/exp_9f21ac"
}One-click for the dashboard, one call for the API. Both land in the same job queue.
Export every chat, transaction, fan and subscriber since day one.
Schedule daily or hourly exports that only send new rows.
Pick a warehouse-ready format for any downstream tool.
S3, GCS, Azure Blob, Google Drive, Dropbox, BigQuery, Snowflake, Postgres, Airtable.
Field masking and per-column encryption for hashed PII on every export.
Images and videos with metadata JSON alongside the files.
Fanvue data export writes directly to the storage or warehouse your team already uses, including Airtable for lightweight agency workflows.
// data-export.ts - request a Parquet export to S3
await fetch("https://api.apifanvue.com/v1/tools/data-export", {
method: "POST",
headers: { "Authorization": "Bearer sk_live_...", "Content-Type": "application/json" },
body: JSON.stringify({
tables: ["chats", "transactions", "fans", "subscribers"],
format: "parquet",
destination: { type: "s3", bucket: "agency-warehouse", prefix: "fanvue/" },
}),
});
// Response
{
"job_id": "exp_9f21ac",
"status": "queued",
"eta_seconds": 42,
"webhook": "https://api.apifanvue.com/v1/webhooks/exp_9f21ac"
}Every export respects the same permissions as the dashboard, so nothing leaks between creators or teams.
Data exports pair well with the ads tracking module for revenue-backed attribution, and with the Auth module for keeping every connected creator in sync. See full pricing for export limits per plan.
Get API keys, docs and MCP access in one click. Free trial, no credit card.