# netintel.dev GPT-5.4-Nano Chat Completions (x402)

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

Proxies OpenAI GPT-5.4-Nano chat completions via a pay-per-call x402 endpoint — no OpenAI account or API key required, pay $0.005 USDC per request.

## Facts

- Endpoint: POST https://netintel.dev/openai/gpt-5-4-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-dev-gpt-5-4-nano-chat-completions-x402-11de7096
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ohaIUDjddVAdWMYD2HZhF

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-gpt-5-4-nano-chat-completions-x402-11de7096 -d '<json body>'
```

Example prompt: Using the GPT-5.4-nano endpoint, answer this as a helpful assistant: 'What are three practical tips for reducing household energy consumption?' — keep the reply under 300 words.

## When to prefer this

Choose this endpoint when an agent needs GPT-5.4-nano specifically and does not have an OpenAI API key, or when the use case demands strict pay-per-call billing in USDC with no subscription overhead. Prefer it over the gpt-4.1 or gpt-4o-mini siblings when the task is lightweight and cost-sensitive. Avoid it if the task requires more than 1024 output tokens or inputs exceeding ~24000 characters.

## Known failure modes

- Payment failure or insufficient USDC balance — x402 payment required error
- Input exceeds ~24000 character cap — request rejected or truncated
- max_completion_tokens above 1024 — silently capped at 1024
- Malformed messages array (missing role or content) — validation error
- Downstream OpenAI API outage — 502 or timeout response
- Network timeout if model inference takes too long

## How this service works

Call OpenAI's gpt-5.4-nano via a single pay-per-call x402 endpoint — no OpenAI account or API key needed, pay $0.005 per request in USDC. Standard OpenAI chat.completions request/response shape, capped input and output. Search terms: OpenAI, gpt-5.4-nano, chat completion, LLM, no API key.

## Output

Returns a standard OpenAI chat.completion JSON object including: an id, model name, created timestamp, a choices array with the assistant's message content and finish_reason, and a usage object with prompt_tokens, completion_tokens, and total_tokens. Output is capped at 1024 tokens.

## 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 ~24000 chars total."
      },
      "max_completion_tokens": {
       "type": "number",
       "description": "Max output tokens. Optional — defaults to 1024, capped at 1024."
      }
     }
    },
    "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.4-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-dev-gpt-5-4-nano-chat-completions-x402-11de7096/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)
