Skip to main content

Exporting Data

TagDragon lets you export all captured requests for further analysis, reporting, or sharing with your team. Export is useful for debugging sessions, audit trails, or offline analysis.

How to export

  1. Click the Export button (download icon) in the TagDragon toolbar
  2. Choose your format: JSON or CSV
  3. The file downloads immediately with a timestamp in the filename

JSON format

Exports all captured requests as a JSON array. Each entry includes:

  • Request URL — Full URL of the request
  • Method — HTTP method (GET, POST, etc.)
  • Timestamp — When the request was captured
  • Status code — HTTP response status
  • Provider name — Which provider matched this request
  • Provider category — Category of the matched provider
  • Decoded parameters — Human-readable parameters broken down by category
  • Query parameters — URL query string parameters
  • POST body — POST body data (if applicable)
  • Request headers — HTTP request headers
  • Response headers — HTTP response headers
  • Duration — Request duration in milliseconds
[
  {
    "url": "https://www.google-analytics.com/g/collect?v=2&...",
    "method": "POST",
    "timestamp": "2026-04-07T10:30:45.123Z",
    "status": 204,
    "provider": "Google Analytics 4",
    "category": "Analytics",
    "decoded": {
      "client_id": "123456789.1234567890",
      "events": [...]
    }
  }
]

CSV format

The CSV format provides a flattened, tabular view suitable for opening in Excel or Google Sheets.

Columns:

ColumnDescription
TimestampWhen the request was captured
ProviderProvider name
CategoryProvider category
MethodHTTP method
URLFull request URL
StatusHTTP status code
DurationRequest duration (ms)
ParametersDecoded parameters as key=value pairs

CSV format is ideal for quick analysis, filtering in spreadsheet applications, or importing into data visualization tools.

Configuring default format

To set your preferred export format:

  1. Open Settings (gear icon in the toolbar)
  2. Find the Export format option
  3. Select JSON or CSV
  4. Your choice is saved and used as the default for future exports

This saves you from selecting the format each time you export.

Was this page helpful?

Start typing to search docs...