# NovaQore Private AI Chat Completions (Qwen 3.5 9B)

> NovaQore Private AI Chat Completions (Qwen 3.5 9B) is a paid API for AI agents from api.novaqore.ai, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Runs private, log-free chat completions using a Qwen 3.5 9B (Q4_K_M) model with a 262K-token context window via an OpenAI-compatible API.

## Facts

- Endpoint: GET https://api.novaqore.ai/v1/chat/completions
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/novaqore-private-ai-chat-completions-qwen-3-5-9b-3bf200a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z6kDIqHYbZ0xB9WkZZf-Y

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability novaqore-private-ai-chat-completions-qwen-3-5-9b-3bf200a5
```

Example prompt: Use NovaQore's private AI to summarize this confidential legal brief — I need it done without any logging or prompt storage: [paste document here].

## When to prefer this

Choose this endpoint when privacy is a hard requirement — no logs, no prompt storage, no training data collection. Ideal for handling confidential documents, sensitive business data, or personal information where you cannot risk data retention by a cloud provider. Also preferred for pay-per-call billing without subscriptions, OpenAI-compatible drop-in replacement needs, and tasks requiring very long context windows (up to 262K tokens).

## Known failure modes

- Payment not processed — 402 response if x402 payment header is missing or insufficient
- Model overload — slow or timeout responses under high GPU demand
- Context length exceeded — requests surpassing 262K tokens are rejected
- Malformed request — missing required 'messages' field returns a 400 error
- Network timeout — US-based infrastructure unreachable from certain regions

## How this service works

NovaQore Private AI — Qwen 3.5 9B (Q4_K_M, 262K context). Private inference: no logs, no prompt storage, no data training. US-based GPU infrastructure. OpenAI-compatible API.

## Output

Returns an OpenAI-compatible chat completion response containing the assistant's generated message, including role, content, finish reason, and token usage statistics.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/novaqore-private-ai-chat-completions-qwen-3-5-9b-3bf200a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.novaqore.ai](https://www.zero.xyz/host/api.novaqore.ai/llms.txt)
