Skip to main content
Guides

Export Reports

6 min read Updated June 26, 2026 KWT Spider v1.3

What

Export transforms crawl data into shareable formats for clients, developers, and stakeholders.

Why

Raw in-app views are ideal for analysis, but audits are often delivered as spreadsheets, PDFs, or JSON for ticketing systems and dashboards.

How

Use File → Export or the toolbar export button on any report tab.

Supported Formats

  • CSV — Universal, opens in Excel and Google Sheets
  • Excel (.xlsx) — Multi-sheet workbook with all report tabs
  • JSON — Structured data for custom integrations
  • PDF — Branded audit summary with charts
Export dialog with format options
Screenshot: Export dialog with format options

Example CSV Output

URL,Status,Title,Title Length,Meta Description,Canonical
https://example.com/,200,Home Page,9,Welcome to Example,https://example.com/
https://example.com/about,200,About Us,8,Learn about our team,https://example.com/about
https://example.com/old-page,301,,0,,

Example JSON Structure

{
  "crawl_id": "a1b2c3",
  "exported": "2026-06-26T10:00:00Z",
  "urls": [
    {
      "url": "https://example.com/",
      "status": 200,
      "title": "Home Page",
      "issues": []
    }
  ]
}

FAQ

Can I schedule automatic exports?
Yes — in v1.3, enable scheduled crawls with auto-export to a folder under Project → Schedule.

Was this article helpful?