# GPT-5.3 Codex Chat Completions via x402 (GET)

> GPT-5.3 Codex Chat Completions via x402 (GET) is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.007472/call, status unknown (last checked 2026-09-15).

Generates GPT-5.3-Codex coding-oriented chat completions via GET query parameters, paid per-request with USDC over x402.

## Facts

- Endpoint: GET https://gpt55.558686.xyz/v1/chat/completions/gpt-5.3-codex
- Price: $0.007472/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gpt-5-3-codex-chat-completions-via-x402-get-e6bf8eae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LyujQoSqQyYGE4FA4fMN2

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 gpt-5-3-codex-chat-completions-via-x402-get-e6bf8eae
```

Example prompt: Can you use the GPT-5.3 Codex model to help me plan and write a Python patch for rate-limiting middleware — keep the response under 2000 tokens?

## When to prefer this

Choose this endpoint when you need coding-oriented GPT chat completions (patch planning, code generation, structured dev output) via a simple GET request with x402 USDC micropayment on Base or Solana, without needing a long-lived API key. Ideal for AI agents that support x402 payment flows and want Codex-class output on a pay-per-call basis.

## Known failure modes

- Payment not provided or insufficient — 402 Payment Required returned
- Input exceeds 700000 character limit — request rejected
- Upstream model unavailable — 503 or timeout error
- Invalid model enum value in query param — 400 Bad Request
- max_tokens out of range (must be 1–128000) — validation error
- Missing required 'input' query parameter — 400 error

## How this service works

GPT-5.6 Luna API Base USDC and OpenAI-compatible x402 chat: one request for $0.00293, paid by browser wallet or a quote-first agent fallback.

## Output

Returns an OpenAI-compatible chat completion object containing an id, model name, choices array with assistant message content (typically code or structured development output), and a usage object with token counts. Actual output length depends on upstream availability, request parameters, and account policy up to 128000 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "additionalProperties": true
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      },
      "input": {
       "type": "string"
      },
      "model": {
       "enum": [
        "gpt-5.6-sol",
        "gpt-5.6",
        "gpt-5.6-luna",
        "gpt-5.6-terra",
        "gpt-5.5",
        "gpt-5.3-codex",
        "gpt-5.4"
       ],
       "type": "string"
      },
      "prompt": {
       "type": "string"
      },
      "system": {
       "type": "string"
      },
      "message": {
       "type": "string"
      },
      "max_tokens": {
       "type": "integer",
       "maximum": 128000,
       "minimum": 1
      },
      "system_prompt": {
       "type": "string"
      },
      "max_output_tokens": {
       "type": "integer",
       "maximum": 128000,
       "minimum": 1
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "id",
      "object",
      "model",
      "choices"
     ],
     "properties": {
      "id": {
       "type": "string"
      },
      "model": {
       "type": "string"
      },
      "usage": {
       "type": "object"
      },
      "object": {
       "type": "string"
      },
      "choices": {
       "type": "array"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "chatcmpl_example",
  "model": "gpt-5.6-luna",
  "usage": {
   "total_tokens": 44,
   "prompt_tokens": 32,
   "completion_tokens": 12
  },
  "object": "chat.completion",
  "choices": [
   {
    "index": 0,
    "message": {
     "role": "assistant",
     "content": "A concise answer from GPT-5.5."
    },
    "finish_reason": "stop"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gpt-5-3-codex-chat-completions-via-x402-get-e6bf8eae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gpt55.558686.xyz](https://www.zero.xyz/host/gpt55.558686.xyz/llms.txt)
