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
- Click the Export button (download icon) in the TagDragon toolbar
- Choose your format: JSON or CSV
- 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:
| Column | Description |
|---|---|
| Timestamp | When the request was captured |
| Provider | Provider name |
| Category | Provider category |
| Method | HTTP method |
| URL | Full request URL |
| Status | HTTP status code |
| Duration | Request duration (ms) |
| Parameters | Decoded 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:
- Open Settings (gear icon in the toolbar)
- Find the Export format option
- Select JSON or CSV
- Your choice is saved and used as the default for future exports
This saves you from selecting the format each time you export.