# NetIntel GPT-4.1 Chat Completions Gateway

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

Proxies OpenAI GPT-4.1 chat completions via a pay-per-call x402 endpoint, requiring no OpenAI account or API key — just pay $0.09 USDC per request.

## Facts

- Endpoint: POST https://netintel.dev/openai/gpt-4-1
- Price: $0.09/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-4-1-chat-completions-gateway-3ea338e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yNgX7EJtUaDX81HG3Us_9

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-4-1-chat-completions-gateway-3ea338e0 -d '<json body>'
```

Example prompt: Use GPT-4.1 to write me a concise product description for a noise-cancelling travel headphone — I don't have an OpenAI API key, so use the pay-per-call gateway that charges $0.09 per request in USDC.

## When to prefer this

Choose this endpoint when you need GPT-4.1 chat completions without setting up an OpenAI account or managing API keys — ideal for agents, automations, or one-off tasks that prefer a pay-per-call USDC micropayment model. Also preferable when your pipeline needs to avoid per-user credential management and can tolerate capped input/output token limits.

## Known failure modes

- Payment failure or insufficient USDC balance causing a 402 Payment Required response
- Input token count exceeding the capped limit resulting in a 400 error
- Malformed messages array or missing required fields returning a 422 validation error
- Upstream OpenAI API outage causing a 502 or 503 gateway error
- Rate limiting if too many concurrent requests are sent

## How this service works

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

## Output

Returns a standard OpenAI chat.completions response object containing the assistant's generated message, finish reason, and token usage counts — identical in shape to the OpenAI API response, with capped input and output token limits.

## 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": {
      "top_p": {
       "type": "number",
       "description": "Nucleus sampling. Optional."
      },
      "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 ~48000 chars total."
      },
      "max_tokens": {
       "type": "number",
       "description": "Max output tokens. Optional — defaults to 2048, capped at 2048."
      },
      "temperature": {
       "type": "number",
       "description": "Sampling temperature. Optional."
      }
     }
    },
    "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-4.1",
  "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-4-1-chat-completions-gateway-3ea338e0/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)
