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

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

Runs an OpenAI GPT-4.1-nano chat completion via a pay-per-call x402 endpoint — no OpenAI account or API key required, $0.005 USDC per request.

## Facts

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

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

Example prompt: Ask GPT-4.1-nano to write a one-paragraph summary of quantum entanglement in plain English, keeping the output under 200 tokens — I want to pay per call without setting up an OpenAI account.

## When to prefer this

Choose this endpoint when you need GPT-4.1-nano inference without managing an OpenAI account or API key, and you want true pay-per-call billing via x402 micropayments in USDC. Ideal for agent pipelines that need a cheap, fast, low-token-count LLM step (under $0.01/call), serverless or ephemeral environments where credential management is burdensome, or when building multi-tenant systems where each call is independently metered. Prefer GPT-4.1 or GPT-4o sibling endpoints on the same host if you need higher quality or longer context.

## Known failure modes

- Payment not received or insufficient USDC — x402 payment required error
- Input messages array exceeds ~24,000 character cap — request rejected
- max_tokens exceeds 1024 hard cap — clamped or rejected
- Malformed messages array (missing role or content fields) — validation error
- Upstream OpenAI API unavailability — 502/503 gateway error
- Invalid bodyType value — schema validation failure

## How this service works

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

## Output

Returns a standard OpenAI chat.completions response object containing: an array of choices (each with an assistant message content and finish_reason), token usage breakdown (prompt_tokens, completion_tokens, total_tokens), model name, 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_tokens": {
       "type": "number",
       "description": "Max output tokens. Optional — defaults to 1024, capped at 1024."
      },
      "temperature": {
       "type": "number",
       "description": "Sampling temperature. Optional."
      },
      "top_p": {
       "type": "number",
       "description": "Nucleus sampling. Optional."
      }
     },
     "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-4.1-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-4-1-nano-chat-completions-x402-2daece65/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)
