Full history
Every chat, transaction and interaction, all the way back to account creation.
Incremental syncs
CDC-style deltas so nightly warehouse jobs stay cheap and fast.
CSV, JSON, Parquet
Pick the format your data stack wants. Parquet + zstd by default.
Destinations
S3, GCS, Azure Blob, Google Drive, Dropbox, BigQuery, Snowflake, Postgres.
GDPR-safe
Fine-grained field masking. Per-column encryption for hashed PII.
Vault media
Download all vault images and videos with metadata JSON siblings.
curl
bashcurl -X POST https://app.maloumapi.com/api/tools/data-export \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"account": "acc_maloum_creator_xyz",
"tables": ["fans","transactions","messages"],
"format": "parquet",
"destination": {
"type": "s3",
"bucket": "my-warehouse",
"prefix": "maloum/xyz/"
}
}'response.json
json{
"job_id": "exp_01HXYZ...",
"status": "queued",
"eta_seconds": 45,
"rows_estimated": 1284091,
"signed_urls": [],
"webhook": "https://your.app/webhooks/maloum/export"
}