Skip to main content

Quick Start: Export with CLI

The easiest way to extract your data is using our official npm package:
# Export to JSONL (recommended for large datasets)
HELICONE_API_KEY="your-api-key" npx @helicone/export --start-date 2024-01-01 --include-body

# Export to CSV for analysis in spreadsheets
HELICONE_API_KEY="your-api-key" npx @helicone/export --format csv --output data.csv --include-body

# Export with property filters (e.g., by environment)
HELICONE_API_KEY="your-api-key" npx @helicone/export --property environment=production --include-body

# Export from EU region
HELICONE_API_KEY="your-eu-api-key" npx @helicone/export --region eu --include-body
Key Features:
  • ✅ Auto-recovery from crashes with checkpoint system
  • ✅ Retry logic with exponential backoff
  • ✅ Progress tracking with ETA
  • ✅ Multiple output formats (JSON, JSONL, CSV)
  • ✅ Property and date filtering
  • ✅ Region support (US and EU)
See the export tool documentation for all available options.

What Data You Can Extract

Our export tool provides comprehensive access to your LLM data:
  • Request Metadata: User IDs, session IDs, custom properties
  • Model Information: Model names, versions, providers
  • Request/Response Bodies: Full prompts and completions (with --include-body)
  • Performance Metrics: Latency, token counts, cache hits
  • Cost Data: Per-request costs in USD
  • Feedback: User ratings and feedback (when available)

Using the REST API

For custom integrations or programmatic access, use our REST API:
Important: When filtering by custom properties, you MUST wrap them in a request_response_rmt object. See examples below.
Get all requests:
curl --request POST \
  --url https://api.helicone.ai/v1/request/query-clickhouse \
  --header "Content-Type: application/json" \
  --header "authorization: Bearer $HELICONE_API_KEY" \
  --data '{
    "filter": "all",
    "limit": 1000,
    "offset": 0
  }'
Filter by custom property:
curl --request POST \
  --url https://api.helicone.ai/v1/request/query-clickhouse \
  --header "Content-Type: application/json" \
  --header "authorization: Bearer $HELICONE_API_KEY" \
  --data '{
    "filter": {
      "request_response_rmt": {
        "properties": {
          "environment": {
            "equals": "production"
          }
        }
      }
    },
    "limit": 1000,
    "offset": 0
  }'
Filter by date range AND property:
curl --request POST \
  --url https://api.helicone.ai/v1/request/query-clickhouse \
  --header "Content-Type: application/json" \
  --header "authorization: Bearer $HELICONE_API_KEY" \
  --data '{
    "filter": {
      "left": {
        "request_response_rmt": {
          "request_created_at": {
            "gte": "2024-01-01T00:00:00Z"
          }
        }
      },
      "operator": "and",
      "right": {
        "request_response_rmt": {
          "properties": {
            "appname": {
              "equals": "MyApp"
            }
          }
        }
      }
    },
    "limit": 1000,
    "offset": 0
  }'
See the full API documentation for more filter options and examples.

ETL Connectors

We currently provide:
  • CLI tool for direct export to JSON/JSONL/CSV
  • REST API for custom integrations
Looking for a specific connector? We’re receptive to suggestions! Reach us on Discord or submit a Github issue.