# NetIntel GPT-5.5 Chat Completions (via x402)

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

Provides access to OpenAI's GPT-5.5 model via a pay-per-call x402 micropayment API, returning standard OpenAI-compatible chat completion responses.

## Facts

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

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-gpt-5-5-chat-completions-via-x402-eb15ea7b -d '<json body>'
```

Example prompt: Ask GPT-5.5 to write a concise executive summary of this meeting transcript: 'Q3 results were mixed — revenue up 12% but margins compressed due to supply chain issues. Team agreed to renegotiate supplier contracts by end of October.'

## When to prefer this

Choose this endpoint when you need GPT-5.5 specifically (not an older GPT model) and want pay-per-call USDC micropayment billing with no API key, no signup, and guaranteed no-charge on failures. Ideal for agent pipelines with sporadic or variable call volumes where a monthly subscription is inefficient, or when operating in an x402-native payment environment on Base or Solana.

## Known failure modes

- Input exceeds ~96000 character cap — request rejected with validation error, no charge
- max_completion_tokens set above 8192 — capped or rejected
- Upstream OpenAI service failure — no charge applied per NetIntel policy
- Malformed messages array (missing role or content fields) — validation error
- Model unavailable or rate-limited at upstream — server error returned, no charge

## 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 a standard OpenAI chat.completion JSON object containing the assistant's reply message, finish_reason (e.g. 'stop'), token usage breakdown (prompt_tokens, completion_tokens, total_tokens), model name ('gpt-5.5'), a unique completion ID, and a Unix timestamp. Up to 8192 output tokens per call.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "messages"
     ],
     "properties": {
      "messages": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "role",
         "content"
        ],
        "properties": {
         "role": {
          "type": "string",
          "description": "system, user, or assistant"
         },
         "content": {
          "type": "string",
          "description": "Message text"
         }
        }
       },
       "description": "OpenAI chat messages: [{role:'system'|'user'|'assistant', content:string}]. Input capped ~96000 chars total."
      },
      "max_completion_tokens": {
       "type": "number",
       "description": "Max output tokens. Optional — defaults to 8192, capped at 8192."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "model": {
       "type": "string"
      },
      "usage": {
       "type": "object",
       "description": "prompt_tokens, completion_tokens, total_tokens"
      },
      "object": {
       "type": "string",
       "description": "Always 'chat.completion'"
      },
      "choices": {
       "type": "array",
       "description": "Assistant message + finish_reason."
      },
      "created": {
       "type": "number",
       "description": "Unix timestamp (seconds)"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "chatcmpl-abc123",
  "model": "gpt-5.5",
  "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-gpt-5-5-chat-completions-via-x402-eb15ea7b/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)
