Billing Usage Analytics (Beta)
Beta: This endpoint is currently in beta and may be unstable. Request/response schemas and behavior may change without notice.
Get aggregated usage analytics for the authenticated user with breakdowns by date, model, and API key. This endpoint provides summary views of your API usage, ideal for dashboards and usage monitoring. Data is cached for 10 minutes.
Get aggregated usage analytics for the authenticated user, with breakdowns by date, model, and API key. This endpoint provides summary views of your API usage data for building dashboards and monitoring consumption. Data is cached for 10 minutes.Documentation Index
Fetch the complete documentation index at: https://veniceai-docs-guide-security-code-reviewer.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Query Parameters
You can specify the time period for analytics using either:- lookback: A relative period like “7d” (7 days), “30d” (30 days), up to “90d” (90 days)
- startDate and endDate: A custom date range in
YYYY-MM-DDformat. Both are required if either is provided.
Response Fields
lookback
The lookback period used for the query. Either in “Nd” format (e.g., “7d”) or “startDate:endDate” format.byDate
Daily usage totals for the requested period.- date: The date in
YYYY-MM-DDformat - USD: Total usage in USD for that day
- DIEM: Total usage in DIEM for that day
byModel
Usage breakdown by model, sorted by total spend (highest first).- modelName: Display name of the model (e.g., “GLM 5”)
- unitType: Type of units consumed (tokens, images, chars, minutes, seconds)
- modelType: Type of model (LLM, IMAGE, TTS, ASR, VIDEO), or null
- totalUsd: Total USD spent on this model
- totalDiem: Total DIEM spent on this model
- totalUnits: Total units consumed for this model
- breakdown: Array of usage breakdowns by type (only present if multiple types). Each entry contains:
- type: Token type (e.g., “Input”, “Output”, “Cache Read”, “Cache Write”)
- usd: USD amount for this breakdown
- diem: DIEM amount for this breakdown
- units: Number of units for this breakdown
byModelDaily
Daily chart data for top 8 models. Each entry contains a “date” (timestamp) plus model names as keys with DIEM usage values.topModels
Array of the top 8 model names by usage, for chart legends.byKey
Usage breakdown by API key, sorted by total spend (highest first).- apiKeyId: The API key ID, or null if usage was from the web app
- description: API key description or “Web App”
- totalUsd: Total USD spent via this key
- totalDiem: Total DIEM spent via this key
- totalUnits: Total units consumed via this key
byKeyDaily
Daily chart data for top 8 API keys. Each entry contains a “date” (timestamp) plus key descriptions as keys with DIEM usage values.topKeyNames
Array of the top 8 API key descriptions by usage, for chart legends.Example Usage
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Lookback period for usage data. Format: number followed by "d" (e.g., "7d", "30d"). Maximum: 90d
^[1-9]\d*d$"7d"
Start date for filtering records (YYYY-MM-DD). If provided, endDate is also required.
^\d{4}-\d{2}-\d{2}$"2024-01-01T00:00:00.000Z"
End date for filtering records (YYYY-MM-DD). If provided, startDate is also required.
^\d{4}-\d{2}-\d{2}$"2024-01-31T00:00:00.000Z"
Response
Successful response with aggregated usage analytics
Aggregated usage analytics response with breakdowns by date, model, and API key
The lookback period used for the query. Either "Nd" format or "startDate:endDate" format.
"7d"
Daily usage totals for the requested period
Usage breakdown by model, sorted by total spend (highest first)
Daily chart data for top 8 models. Each entry has "date" (timestamp) plus model names as keys.
Names of the top 8 models by usage (for chart legends)
Usage breakdown by API key, sorted by total spend (highest first)
Daily chart data for top 8 API keys. Each entry has "date" (timestamp) plus key descriptions as keys.
Descriptions of the top 8 API keys by usage (for chart legends)