# GPT-5.5 x402 AgentCore Integration Kit

> GPT-5.5 x402 AgentCore Integration Kit is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-15).

Returns code snippets and integration guidance for connecting AI agents to the GPT-5.5 x402 gateway via AgentCore, CDP Bazaar, MCP, curl, or x402 buyer protocols

## Facts

- Endpoint: POST https://gpt55.558686.xyz/v1/tools/x402-agentcore-integration-kit
- Price: $0.006/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-5-x402-agentcore-integration-kit-07f4c0da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i0oIG2F5zucLEr2269zNg

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-x402-agentcore-integration-kit-07f4c0da -d '<json body>'
```

Example prompt: Generate an AgentCore integration kit for the GPT-5.5 x402 gateway at https://gpt55.558686.xyz — my agent is called 'ResearchBot', my buyer goal is 'summarize documents', and I want to cap spending at $0.006 USDC per call.

## When to prefer this

Choose this endpoint when you need ready-to-use integration scaffolding — AgentCore, MCP, CDP Bazaar, curl, or x402 buyer code — for connecting to the GPT-5.5 x402 gateway, rather than making a direct chat/text completion call. Ideal for agent developers bootstrapping payment-aware LLM integrations quickly without writing boilerplate x402 protocol code from scratch.

## Known failure modes

- Missing required 'input.type' or 'input.method' fields returns a 400 validation error
- URL or base_url exceeding 2048 characters is rejected
- Invalid max_usdc_per_call outside 0.000001–100 range returns validation error
- x402 payment not provided or incorrect amount returns 402 Payment Required
- Service temporarily unavailable returns 5xx error
- Query params with additional unexpected properties are rejected due to additionalProperties:false

## How this service works

Low-price OpenAI-compatible GPT-5.5 chat completions and text tools over x402 USDC on Base: $0.0001 compact requests, $0.066667 true max-output requests, no subscription.

## Output

A JSON object with ok=true, a tool name ('x402AgentCoreIntegrationKit'), and a summary string describing generated integration snippets for AgentCore Gateway, CDP Bazaar, MCP, curl, and x402 buyer code — ready to drop into an agent or script that pays per GPT-5.5 request via x402 USDC.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "base_url": "https://gpt55.558686.xyz",
   "agentName": "ResearchBot",
   "buyer_goal": "summarize documents",
   "max_usdc_per_call": 0.006
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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",
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 2048,
       "minLength": 1
      },
      "base_url": {
       "type": "string",
       "maxLength": 2048,
       "minLength": 1
      },
      "agentName": {
       "type": "string",
       "maxLength": 120
      },
      "agent_name": {
       "type": "string",
       "maxLength": 120
      },
      "buyer_goal": {
       "type": "string",
       "maxLength": 240
      },
      "serviceName": {
       "type": "string",
       "maxLength": 160
      },
      "service_name": {
       "type": "string",
       "maxLength": 160
      },
      "max_usdc_per_call": {
       "type": "number",
       "maximum": 100,
       "minimum": 0.000001
      },
      "preferred_endpoint": {
       "type": "string",
       "maxLength": 2048
      }
     },
     "additionalProperties": false
    },
    "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": {
      "ok": {
       "type": "boolean"
      },
      "tool": {
       "type": "string"
      },
      "fetchedAt": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tool": "x402AgentCoreIntegrationKit",
  "summary": "Generate AgentCore Gateway, CDP Bazaar, MCP, curl, and x402 buyer integration snippets using x402 USDC payment"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gpt-5-5-x402-agentcore-integration-kit-07f4c0da/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)
