Skip to main content
GET
/
v1
/
organizations
/
{orgId}
/
logs
/
export
curl "https://api.edgee.app/v1/organizations/{orgId}/logs/export?period=7d&format=csv" \
  -H "Authorization: Bearer <your_api_token>"
Export your organization’s AI Gateway usage and cost data for analysis, reporting, or billing purposes. You can export data in CSV or JSON format with flexible filtering options.

Query Parameters

period
string
default:"24h"
Time range for the export. Examples: 1h, 24h, 7d, 30d
from_date
string
Start date in ISO 8601 format (e.g., 2026-04-01). Overrides the period parameter if provided.
to_date
string
End date in ISO 8601 format (e.g., 2026-04-08). Overrides the period parameter if provided.
format
string
default:"csv"
Export format. Options: csv or json
api_key_id[]
string
Filter by specific API key IDs. This parameter can be repeated multiple times to include multiple keys.
tags[]
string
Filter by tags. This parameter can be repeated multiple times to include multiple tags.

Examples

curl "https://api.edgee.app/v1/organizations/{orgId}/logs/export?period=7d&format=csv" \
  -H "Authorization: Bearer <your_api_token>"

Response

The response is a CSV or JSON file containing your usage and cost data, ready for download or further processing. CSV format includes columns for:
  • Timestamp
  • API Key
  • Model
  • Provider
  • Input Tokens
  • Output Tokens
  • Cost
  • Tags
JSON format includes an array of usage records with the same information as CSV.