Help › Data export

Data export

You own your data. SocialScalr ships two self-serve export paths: a full JSON dump of everything in your workspace, and per-table CSV exports for spreadsheet-friendly slices. Both available on all paid plans, no support ticket required.

By · Last updated

Quick path: full account export (JSON)

  1. Open the dashboard at socialscalr.com/app.
  2. Settings (top-right gear icon) → Export.
  3. Click "Download all my data".
  4. For accounts under ~5,000 leads, the file downloads immediately. Larger accounts get an email when the export is ready (typically 2-5 minutes).

The JSON file contains:

Per-table CSV exports

For smaller exports targeted at a specific use case:

Leads CSV (Contacts tab)

  1. Open Contacts tab.
  2. Apply any filter (stage, tag, owner, last_activity_at, custom field, saved view).
  3. Click the Export button in the toolbar.
  4. Field selector lets you choose which columns to include - default is all.
  5. Download starts immediately.

Common use: "all replied leads from Q1 2026" filtered and exported for CRM import.

Campaigns CSV

Settings → Campaigns → click any campaign → Export campaign data. Returns sent activity, accepts, replies, and current stage for every lead in that campaign.

Webhook delivery log

Settings → Webhooks → click any endpoint → Export deliveries. CSV of recent deliveries with request body, response code, attempt number, signature.

Programmatic exports via the REST API

If you need recurring exports (e.g. nightly sync to a data warehouse), use the REST API rather than manual export.

curl -H "Authorization: Bearer YOUR_API_TOKEN" \
  "https://socialscalr.com/api/v1/leads?stage=replied&since=24h&limit=1000"

Full API reference at /help/api. Common cron pattern: nightly script pulls leads updated in last 24h, syncs to your data warehouse via BigQuery/Snowflake.

What's in the JSON file (structure)

{
  "workspace": { "id": "...", "name": "...", "plan": "pro", "created_at": "..." },
  "leads": [ { "id": "...", "name": "...", "stage": "...", "notes": "...", ... }, ... ],
  "campaigns": [ ... ],
  "sequences": [ ... ],
  "messages": [ ... ],
  "posts": [ ... ],
  "watchtower_entities": [ ... ],
  "watchtower_signals": [ ... ],
  "webhook_endpoints": [ ... ],
  "audit_log": [ ... ],
  "exported_at": "2026-05-24T15:32:11Z"
}

Data retention after cancellation

If you need an export after hard-deletion, contact [email protected] before day 30 to extend the window.

GDPR data subject access requests

The self-serve export above satisfies GDPR Article 15 (Right of Access) and Article 20 (Data Portability) for your own account. For requests about a specific contact you've stored (e.g. one of your leads filing a request through their own data subject right), email [email protected] - we'll work with you to scope the response within the GDPR 30-day window.

Related