export_calls
Export large batches of LLM call records with filters by time, provider, or model. Returns JSON data for analysis or conversion to CSV.
Instructions
Large-batch export of calls (POST /v1/query/export). Higher limit than query_calls (per-plan max records: Free 1000 / Pro 50000); available on all plans. Filter axes = startTime / endTime / provider / model plus limit. Example phrasing: "pull all of last month's GPT-4 calls and analyze the trends" — one call. The result format is the same JSON as query_calls (the AI can feed it straight into CSV / statistics).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Cap on returned records. Passed through when within the plan max; clamped to the plan max beyond it | |
| model | No | Model name filter (exact match, no substring matching; e.g. 'gpt-4o-mini') | |
| endTime | No | Range end ISO timestamp (UTC; omit = now) | |
| provider | No | Provider filter (openai / anthropic / google / azure / cohere) | |
| startTime | No | Range start ISO timestamp (UTC; omit = all time) |