# GlianaAI GPT-5.5-Pro Text Generation

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

Generates text via GPT-5.5-Pro using a pay-per-call, no-signup USDC payment model with OpenAI-compatible interface

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/gpt-5.5-pro
- Price: $0.258048/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-pro-text-generation-fb93fff3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cjEThxz71aZ9TwcnUETXo

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-pro-text-generation-fb93fff3
```

Example prompt: Use GlianaAI's GPT-5.5-Pro endpoint to write me a concise, professional summary of the following project brief — pay per call with USDC, no account needed: 'We are building an AI-powered supply chain optimization tool for mid-size manufacturers.'

## When to prefer this

Choose this endpoint when you need GPT-5.5-Pro-level text generation without an OpenAI subscription or API key, and you want to pay per call in USDC via the x402 protocol. Ideal for autonomous AI agents that need powerful LLM reasoning on demand with crypto-native micropayments and no upfront account setup.

## Known failure modes

- Payment not received or insufficient USDC — HTTP 402 returned, generation not performed
- Invalid or missing input body — HTTP 400 with schema validation error
- Model temporarily unavailable — HTTP 503 or timeout
- Malformed request format — HTTP 422 if body type or method is incorrect
- Rate limit exceeded — HTTP 429 if too many concurrent calls

## How this service works

GlianaAI - pay-per-call AI: LLM chat (OpenAI-compatible), image, video, music, speech - 80+ models, no signup, USDC. This resource: gpt-5.5-pro (Text Generation). https://ai.glianalabs.com

## Output

Returns a generated text completion or chat response from the GPT-5.5-Pro model, formatted in an OpenAI-compatible response structure with the model's output text.

## 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-pro",
  "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-pro-text-generation-fb93fff3/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)
