Helicone · Schema

ModelEndpoint

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
provider string
providerSlug string
endpoint object
supportsPtb boolean
pricing object
pricingTiers array
View JSON Schema on GitHub

JSON Schema

helicone-modelendpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelEndpoint",
  "title": "ModelEndpoint",
  "properties": {
    "provider": {
      "type": "string"
    },
    "providerSlug": {
      "type": "string"
    },
    "endpoint": {
      "$ref": "#/components/schemas/Endpoint"
    },
    "supportsPtb": {
      "type": "boolean"
    },
    "pricing": {
      "$ref": "#/components/schemas/SimplifiedPricing"
    },
    "pricingTiers": {
      "items": {
        "$ref": "#/components/schemas/SimplifiedPricing"
      },
      "type": "array"
    }
  },
  "required": [
    "provider",
    "providerSlug",
    "pricing"
  ],
  "type": "object",
  "additionalProperties": false
}