# NetIntel OpenAI-Compatible GPT-5-Nano Chat Completion

> NetIntel OpenAI-Compatible GPT-5-Nano Chat Completion is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Provides an OpenAI-compatible chat completion endpoint powered by GPT-5-Nano, accessible via x402 pay-per-call micropayments with no API key required.

## Facts

- Endpoint: POST https://netintel-production-440c.up.railway.app/openai/gpt-5-nano
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-openai-compatible-gpt-5-nano-chat-completion-52d03d0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JxsFg4a3VIWcH3BIGt7jC

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-openai-compatible-gpt-5-nano-chat-completion-52d03d0e -d '<json body>'
```

Example prompt: Send this message to GPT-5-Nano and return the response: 'Summarize the concept of neural networks in two sentences.'

## When to prefer this

Choose this endpoint when you need a lightweight, fast, OpenAI-compatible text generation call with no API key or signup — ideal for agent workflows that want pay-per-call billing in USDC, zero fixed costs, and compatibility with the OpenAI chat completion message format. Best for simple inference tasks where GPT-5-Nano's smaller footprint is sufficient.

## Known failure modes

- Input validation rejection — malformed message array or missing required fields; not billed
- Upstream OpenAI failure — model unavailable or timeout; not billed
- x402 payment failure — insufficient USDC balance or incorrect payment header
- Rate limiting or quota exceeded on the upstream model provider
- Empty or truncated completion if max_tokens is too low

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

Returns an OpenAI-format chat completion object including the assistant's message content, finish reason, model name (gpt-5-nano), token usage breakdown (prompt, completion, total tokens), and a unique completion ID.

## 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": {
      "messages": {
       "type": "array",
       "description": "OpenAI chat messages: [{role:'system'|'user'|'assistant', content:string}]. Input capped ~24000 chars total.",
       "items": {
        "type": "object",
        "properties": {
         "role": {
          "type": "string",
          "description": "system, user, or assistant"
         },
         "content": {
          "type": "string",
          "description": "Message text"
         }
        },
        "required": [
         "role",
         "content"
        ]
       }
      },
      "max_completion_tokens": {
       "type": "number",
       "description": "Max output tokens. Optional — defaults to 1024, capped at 1024."
      }
     },
     "required": [
      "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",
       "description": "Always 'chat.completion'"
      },
      "created": {
       "type": "number",
       "description": "Unix timestamp (seconds)"
      },
      "model": {
       "type": "string"
      },
      "choices": {
       "type": "array",
       "description": "Assistant message + finish_reason."
      },
      "usage": {
       "type": "object",
       "description": "prompt_tokens, completion_tokens, total_tokens"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "chatcmpl-abc123",
  "model": "gpt-5-nano",
  "usage": {
   "total_tokens": 13,
   "prompt_tokens": 11,
   "completion_tokens": 2
  },
  "object": "chat.completion",
  "choices": [
   {
    "index": 0,
    "message": {
     "role": "assistant",
     "content": "Hi!"
    },
    "finish_reason": "stop"
   }
  ],
  "created": 1735689600
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-openai-compatible-gpt-5-nano-chat-completion-52d03d0e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
