# GPT-5.5 Chat Completions via GET (gpt55.558686.xyz)

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

Generates GPT-5.5 chat completions via a GET request with query parameters, optimized for strong reasoning, production work, code, and structured responses, paid via x402 USDC on Base.

## Facts

- Endpoint: GET https://gpt55.558686.xyz/v1/chat/completions/gpt-5.5
- Price: $0.019999/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gpt-5-5-chat-completions-via-get-gpt55-558686-xyz-495925ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-_hOIGkrVlj-VhNx9sFg3

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-5-chat-completions-via-get-gpt55-558686-xyz-495925ea
```

Example prompt: Ask GPT-5.5 to review this Python function and suggest production-ready improvements, keeping the response under 500 tokens: 'def fetch_user(id): return db.query(User).filter(User.id == id).first()'

## When to prefer this

Prefer this endpoint when you need strong reasoning, code generation, or structured output from GPT-5.5 via a simple GET request with query parameters, and are willing to pay up to $0.091 USDC per call via x402 on Base. Choose this over cheaper sibling endpoints when task complexity demands the full GPT-5.5 model tier rather than mini or codex variants.

## Known failure modes

- Missing required 'input' query parameter returns a 400 error
- Prompt exceeds 700,000 character limit causing rejection
- max_tokens exceeds 2048 ceiling causing validation error
- Insufficient USDC balance or invalid x402 payment header causes 402 Payment Required
- Invalid model enum value causes a schema validation error
- Rate limiting or upstream GPT-5.5 unavailability returns a 503 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 with an id, model name, choices array containing the generated text, and usage statistics including input/output token counts.

## 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-5-chat-completions-via-get-gpt55-558686-xyz-495925ea/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)
