# netintel.dev GPT-5-nano Chat Completions (x402)

> netintel.dev GPT-5-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).

Runs an OpenAI GPT-5-nano chat completion via a pay-per-call x402 endpoint — no OpenAI account needed, $0.005 USDC per request.

## Facts

- Endpoint: POST https://netintel.dev/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-dev-gpt-5-nano-chat-completions-x402-2d849bfa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a8y9SnJlG8y-SU3DgDGu7

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-nano-chat-completions-x402-2d849bfa -d '<json body>'
```

Example prompt: Ask GPT-5-nano to summarize the following paragraph in two sentences: 'Artificial intelligence is transforming industries by automating complex tasks, improving decision-making, and enabling new forms of human-computer interaction.'

## When to prefer this

Choose this endpoint when you need a single GPT-5-nano completion without maintaining an OpenAI account or API key, especially for pay-as-you-go agent workflows where $0.005 USDC per call is acceptable. Prefer it over the gpt-4.1 or gpt-4o-mini siblings when you need the fastest, cheapest nano-class model. It's ideal for lightweight classification, summarization, or reasoning steps inside automated pipelines that need a drop-in OpenAI-compatible response shape.

## Known failure modes

- Payment failure or insufficient USDC balance returns an x402 Payment Required error before the model is called
- Input exceeding ~24000 characters may be rejected or truncated
- max_completion_tokens above 1024 is silently capped at 1024
- Malformed messages array (missing role or content fields) returns a 400 validation error
- Model unavailability or upstream OpenAI outage returns a 5xx error
- Missing required 'messages' field returns a schema validation error

## How this service works

Call OpenAI's gpt-5-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-nano, chat completion, LLM, no API key.

## Output

Returns a standard OpenAI chat.completion JSON object containing the assistant's reply text inside choices[0].message.content, a finish_reason, a usage block with prompt_tokens/completion_tokens/total_tokens, a model identifier, a completion ID, and a Unix timestamp. Output is capped at 1024 tokens.

## 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-dev-gpt-5-nano-chat-completions-x402-2d849bfa/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)
