Helicone · Schema

SpendBreakdownResponse

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
models array
totalCost number
timeRange object
View JSON Schema on GitHub

JSON Schema

helicone-spendbreakdownresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpendBreakdownResponse",
  "title": "SpendBreakdownResponse",
  "properties": {
    "models": {
      "items": {
        "$ref": "#/components/schemas/ModelSpend"
      },
      "type": "array"
    },
    "totalCost": {
      "type": "number",
      "format": "double"
    },
    "timeRange": {
      "properties": {
        "end": {
          "type": "string"
        },
        "start": {
          "type": "string"
        }
      },
      "required": [
        "end",
        "start"
      ],
      "type": "object"
    }
  },
  "required": [
    "models",
    "totalCost",
    "timeRange"
  ],
  "type": "object",
  "additionalProperties": false
}