Skip to main content
Vizdom lets you export your work in several formats — from a single chart image to a full dashboard PDF delivered on a schedule. This guide covers every export option.

Export a visualization as an image

Right-click any visualization on a dashboard and select Export Image. Choose from:
  • PNG — a raster image at 2× resolution. Best for presentations and documents.
  • SVG — a vector image that scales without quality loss. Best for design tools or print.
The file downloads immediately to your browser’s default download folder.

Export underlying data

To download the raw data behind a visualization:
  1. Right-click the visualization and select Export Data.
  2. Choose a format:
    • CSV — a comma-separated text file compatible with any spreadsheet or data tool.
    • Excel (.xlsx) — a formatted workbook with the column headers and data types preserved.
  3. The file downloads immediately.
The exported data reflects the current filter state of the dashboard — if you have a date filter applied, only the filtered rows are included in the export.

Export a dashboard as PDF

1

Open the dashboard

Navigate to the dashboard you want to export. Apply any filters you want reflected in the PDF before proceeding.
2

Open the export menu

Click the three-dot More menu in the top-right corner of the dashboard and select Export as PDF.
3

Configure the export

In the export dialog, set:
  • Page orientation — Portrait or Landscape. Landscape works best for wide dashboards.
  • Paper size — A4 or Letter.
  • Include filters bar — toggle to show or hide the active filter values at the top of the PDF.
4

Download

Click Export. Vizdom renders all visualizations server-side (including those outside the current viewport) and downloads a single PDF file. Rendering typically takes 5–15 seconds depending on the number of charts.

Scheduled exports

You can automate PDF and CSV delivery on a recurring schedule — useful for daily or weekly digests sent to stakeholders.
  1. Open the dashboard and click Share → Email.
  2. Choose PDF or CSV as the attachment format.
  3. Add recipient email addresses, set the schedule (daily, weekly, or monthly), and click Save Schedule.
For webhook-based delivery (for example, posting a file to Slack or an S3 bucket), see Integrations to configure a webhook endpoint that receives the exported file as a multipart/form-data POST request.

API export

You can export dashboards programmatically using the Vizdom REST API. This is useful for building custom reporting tools, integrating exports into data workflows, or automating delivery to stakeholders.

Export a dashboard as PDF

curl -X GET "https://api.vizdom.ai/v1/dashboards/{id}/export?format=pdf" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  --output dashboard.pdf

Export dashboard data as CSV

curl -X GET "https://api.vizdom.ai/v1/dashboards/{id}/export?format=csv" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  --output dashboard.csv

Query parameters

ParameterTypeRequiredDescription
formatstringYesExport format: pdf, csv, or xlsx.
fromstringNoStart of date range filter in ISO 8601 format (e.g. 2025-01-01).
tostringNoEnd of date range filter in ISO 8601 format (e.g. 2025-03-31).
timezonestringNoIANA timezone for date groupings (e.g. America/New_York). Default UTC.
Replace {id} with your dashboard ID. You can find the ID in the dashboard URL: app.vizdom.ai/dashboards/{id}. To authenticate, generate an API key in Settings → API Keys. See Authentication for full details.

Next steps

API Reference

Full reference for the dashboards API, including all export endpoints and response schemas.

Share & Collaborate

Share dashboards via link, embed them in external apps, or schedule email reports.