# netintel.dev Chat Completions Gateway

> netintel.dev Chat Completions Gateway is a paid API for AI agents from netintel.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

OpenAI-compatible pay-per-call chat completions endpoint supporting GPT-4o, GPT-4.1, and other models — no OpenAI account needed, $0.10 USDC per call via x402

## Facts

- Endpoint: POST https://netintel.dev/v1/chat/completions
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-dev-chat-completions-gateway-e11af6c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wO-ppPPSM_pPV9cqOtD-t

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 netintel-dev-chat-completions-gateway-e11af6c2 -d '<json body>'
```

Example prompt: Ask gpt-4o to write me a concise executive summary of the following meeting transcript, keeping it under 200 words — use the standard chat completions endpoint and pay with USDC: [transcript text]

## When to prefer this

Choose this endpoint when you need OpenAI-compatible chat completions without setting up an OpenAI account or managing API keys — especially useful in agent pipelines that pay per invocation using x402/USDC micropayments. Prefer it over the model-specific sibling endpoints (e.g. /v1/gpt-4.1) when you want a single flexible endpoint that selects the model via the request body. Avoid if you need streaming responses, function calling, or vision inputs not confirmed supported here.

## Known failure modes

- Payment not included or insufficient USDC — returns 402 Payment Required
- Unsupported model ID — returns 400 with model not found error
- Messages array missing required role or content fields — returns 400 validation error
- max_tokens exceeds model cap — clamped silently or returns 400
- Model capacity exceeded or upstream OpenAI timeout — returns 503 or 504
- Malformed JSON body — returns 400 parse error

## How this service works

OpenAI-compatible chat completions gateway — standard /v1/chat/completions path and request shape, model chosen in the body: any gpt-* chat model (not Claude/embeddings), each at its own price. Priced per model, $0.005–$0.65 per call in USDC via x402, no API key: POST unpaid and the 402 quotes your model's exact price. Supports response_format json_object. GET /v1/models (free) lists every model with its endpoint and price.

## Output

Returns a standard OpenAI chat completion object with a choices array containing the assistant's message, a model field, usage token counts (prompt_tokens, completion_tokens, total_tokens), and a unique completion ID — identical in shape to the OpenAI /v1/chat/completions response.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "model": {
       "type": "string",
       "description": "Model id, e.g. gpt-4o-mini. Free catalog: GET /v1/models (every model, endpoint and price)"
      },
      "messages": {
       "type": "array",
       "description": "OpenAI chat messages: [{role:'system'|'user'|'assistant', content:string}]",
       "items": {
        "type": "object",
        "properties": {
         "role": {
          "type": "string",
          "description": "system, user, or assistant"
         },
         "content": {
          "type": "string",
          "description": "Message text"
         }
        },
        "required": [
         "role",
         "content"
        ]
       }
      },
      "max_tokens": {
       "type": "number",
       "description": "Max output tokens (clamped to the model's cap)."
      }
     },
     "required": [
      "model",
      "messages"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "object": {
       "type": "string"
      },
      "model": {
       "type": "string"
      },
      "choices": {
       "type": "array"
      },
      "usage": {
       "type": "object"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "chatcmpl-9f2f28d90a3c4e0f8f1c2d3e",
  "model": "gpt-4o-mini",
  "usage": {
   "total_tokens": 15,
   "prompt_tokens": 13,
   "completion_tokens": 2
  },
  "object": "chat.completion",
  "choices": [
   {
    "index": 0,
    "message": {
     "role": "assistant",
     "content": "Hi!"
    },
    "finish_reason": "stop"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-dev-chat-completions-gateway-e11af6c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
