# GlianaAI GPT-5.5 Text Generation

> GlianaAI GPT-5.5 Text Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.043008/call, status unknown (last checked 2026-09-14).

Generates text using GPT-5.5 via a pay-per-call, OpenAI-compatible LLM chat endpoint requiring no signup, paid in USDC.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/gpt-5.5
- Price: $0.043008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-gpt-5-5-text-generation-c1b3a003
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MGSO5M3OpfbefGlMO_iXr

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 glianaai-gpt-5-5-text-generation-c1b3a003
```

Example prompt: Use GlianaAI's GPT-5.5 endpoint to draft a short professional summary for a software engineer with 5 years of experience in Python and cloud infrastructure — I'll pay the $0.049 USDC per-call fee.

## When to prefer this

Choose this endpoint when you need GPT-5.5 text generation without an OpenAI subscription, prefer pay-per-call USDC micropayments via x402 protocol, or want an OpenAI-compatible LLM API with no signup required. Ideal for agents that execute payments natively and need flexible, on-demand LLM access.

## Known failure modes

- Payment not completed or insufficient USDC balance — 402 Payment Required response
- Invalid or missing 'input' field in request body — 400 Bad Request
- Unsupported HTTP method or bodyType — request rejected
- GPT-5.5 model unavailable or overloaded — 503 Service Unavailable
- Malformed JSON body — parse error returned

## How this service works

One endpoint for 90+ generative AI models, live market data, SEC filings and identity APIs — image, video, music, speech, LLM chat, crypto and FX rates, DEX liquidity, gas, US company fundamentals and insider trades, document OCR and face matching. Pay per request in USDC on Tempo, Base, Solana, Algorand or BNB Chain with no signup, or top up a prepaid balance in rupiah.

## Output

Returns a GPT-5.5-generated text completion or chat response based on the provided input, delivered as a JSON HTTP response after the x402 USDC micropayment is processed.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "gpt-5.5",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-gpt-5-5-text-generation-c1b3a003/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.glianalabs.com](https://www.zero.xyz/host/api.glianalabs.com/llms.txt)
