# GPT-5.5 Paid Chat via x402 USDC (CDP Bazaar)

> GPT-5.5 Paid Chat via x402 USDC (CDP Bazaar) is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.110876/call, status unknown (last checked 2026-09-13).

Processes GPT-5.5 chat completions via a GET endpoint paid with x402 USDC on Base, supporting summarization, translation, QA, and coding tasks for AI agents.

## Facts

- Endpoint: GET https://gpt55.558686.xyz/v1/paid/chat-cdp
- Price: $0.110876/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gpt-5-5-paid-chat-via-x402-usdc-cdp-bazaar-a8e7fcf1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d8bwtSxc1ezX5Qod5F9JK

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-paid-chat-via-x402-usdc-cdp-bazaar-a8e7fcf1
```

Example prompt: Summarize this article for me using the GPT-5.5 x402 gateway — here's the text: 'The Federal Reserve held interest rates steady amid concerns about inflation and slowing growth.' Keep output under 100 tokens.

## When to prefer this

Choose this endpoint when you need cheap, per-call GPT-5.5 chat completions paid with USDC on Base via x402, especially for AI agents operating in agentic marketplaces like CDP Bazaar or Agentic.Market. Ideal when you want micropayment-gated AI access at $0.001 per call or less, with GET-based simplicity and OpenAI-compatible output format.

## Known failure modes

- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Input exceeding 700000 characters returns a 400 or truncation error
- max_tokens above 4096 is rejected
- Missing required 'q', 'prompt', or 'message' query parameter returns an error
- Network or gateway timeout for long-output requests

## How this service works

CDP Bazaar and Agentic.Market compatible OpenAI-compatible GPT-5.5 paid chat over exact x402 Base USDC. Stable GET endpoint for low-cost AI agents, GPT-5.5 chat completions, summarization, translation, QA, coding help, and marketplace discovery. Market benchmark: the latest local x402.direct sample found AI-like listing prices with p25 around $0.01 and median around $0.03 per call, while this gateway advertises a $0.110876 compact GPT-5.5 entry request, $0.110876 long-output GPT-5.5 requests, and $0.523889 true max-output GPT-5.5 requests. Pay up to $0.110876 per request with x402 USDC on Base. Exact fixed-price payment and upto token-metered payment are both accepted when clients support them; upto settlements use actual response usage, a 0.0001 minimum, and the selected tier price as the cap. Public paid calls are limited to 700000 input characters and 4096 output tokens.

## Output

Returns an OpenAI-compatible chat completion JSON object with an id, model name, choices array containing the generated text, and a usage object showing token counts. Supports upto token-metered billing based on actual response usage.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      },
      "prompt": {
       "type": "string"
      },
      "system": {
       "type": "string"
      },
      "message": {
       "type": "string"
      },
      "max_tokens": {
       "type": "integer",
       "maximum": 4096,
       "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
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gpt-5-5-paid-chat-via-x402-usdc-cdp-bazaar-a8e7fcf1/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)
