Skip to content

Export

Export your Trakkr data in JSON or CSV format for analysis in external tools.

Requires authentication
10 req/min

Endpoint

GET/export

Export your Trakkr data in JSON or CSV format. Use this to sync data with your data warehouse, create custom reports, or analyze in tools like Excel or Google Sheets.

Query Parameters

brand_idstringrequired

Brand UUID from /get-brands

data_typestringrequired

What to export: prompts, results, citations, reports

formatstring

Output format: json or csv

Default: json

daysinteger

For time-based data (results, citations)

Default: 30

limitinteger

Max records to export

Default: 1000

Data Types

data_typeDescriptionTime Filter
promptsAll prompts for the brandNo
resultsAI response results with mentionsYes (days param)
citationsCitation URLsYes (days param)
reportsDaily report summariesYes (days param)

CSV Export

For CSV export, the response includes:

  • Content-Type: text/csv
  • Content-Disposition header with filename
  • Column headers in first row
Export CSV
1# Export to CSV file
2curl -H 'Authorization: Bearer $TRAKKR_API_KEY' \
3 'https://api.trakkr.ai/export?brand_id=75ffdeb9-0924-4ff9-8ded-c2470d73d224&data_type=results&format=csv&days=90' \
4 -o trakkr_results.csv

Limits

Max records per request:10,000
Max days for time-based exports:365
For large exports, use pagination with the limit parameter and multiple requests if needed.

Use Cases

  • Sync visibility data to your data warehouse
  • Create custom reports in Excel or Google Sheets
  • Feed data into business intelligence tools
  • Backup your Trakkr data

Code Example

Export JSON
1curl -H 'Authorization: Bearer $TRAKKR_API_KEY' \
2 'https://api.trakkr.ai/export?brand_id=75ffdeb9-0924-4ff9-8ded-c2470d73d224&data_type=prompts&format=json'
200 OK
1{
2 "data_type": "prompts",
3 "count": 25,
4 "data": [
5 {
6 "id": "c3d4e5f6-a7b8-9012-cdef-345678901234",
7 "text": "What are the best CRM tools?",
8 "active": true,
9 "focus_area": "general",
10 "intent": "recommendation",
11 "quality_score": 85,
12 "created_at": "2026-01-05T08:00:00Z"
13 }
14 ],
15 "exported_at": "2026-01-09T10:30:00Z"
16}
Press ? for keyboard shortcuts