{
  "info": {
    "name": "UVOX Combined Engine API Examples",
    "description": "Public connection examples with selectable UVOX engine mode. Internal routing technology remains proprietary.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "uvox_key",
      "value": "uvx_live_YOUR_KEY"
    },
    {
      "key": "openai_key",
      "value": "YOUR_OPENAI_KEY"
    },
    {
      "key": "anthropic_key",
      "value": "YOUR_ANTHROPIC_KEY"
    },
    {
      "key": "uvox_mode",
      "value": "zero_loss_cache"
    }
  ],
  "item": [
    {
      "name": "OpenAI Chat Completions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{uvox_key}}"
          },
          {
            "key": "X-UVOX-Mode",
            "value": "{{uvox_mode}}"
          },
          {
            "key": "X-Upstream-API-Key",
            "value": "{{openai_key}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"model\": \"gpt-4o-mini\", \"messages\": [{\"role\": \"user\", \"content\": \"Hello\"}]}"
        },
        "url": "https://api.uvox.tech/openai/v1/chat/completions"
      }
    },
    {
      "name": "Anthropic Messages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{uvox_key}}"
          },
          {
            "key": "X-UVOX-Mode",
            "value": "{{uvox_mode}}"
          },
          {
            "key": "X-Upstream-API-Key",
            "value": "{{anthropic_key}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"model\": \"claude-sonnet-5\", \"max_tokens\": 64, \"messages\": [{\"role\": \"user\", \"content\": \"Hello\"}]}"
        },
        "url": "https://api.uvox.tech/v1/messages"
      }
    }
  ]
}
