# GlianaAI Inkling-256k Text-to-Image Generation

> GlianaAI Inkling-256k Text-to-Image Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.018107/call, status unknown (last checked 2026-09-14).

Generates images from text prompts using the Inkling-256k model via pay-per-call USDC billing on GlianaAI's inference platform.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/inkling-256k
- Price: $0.018107/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-inkling-256k-text-to-image-generation-82b7dfbb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nIRFO-GLZjuzRfMENA_Kl

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-inkling-256k-text-to-image-generation-82b7dfbb
```

Example prompt: Using GlianaAI's Inkling-256k model, generate an image of a misty Japanese mountain village at sunrise with warm golden light filtering through pine trees.

## When to prefer this

Choose this endpoint when you need text-to-image generation without any account signup, want pay-per-call USDC billing on Base, Tempo, or Solana, and specifically want the Inkling-256k model's output characteristics. Prefer this over other GlianaAI image endpoints (flux-2-pro, imagen-4, grok-imagine, nano-banana) when Inkling-256k's style or context window is the desired fit.

## Known failure modes

- Insufficient USDC balance — payment not accepted, request rejected
- Invalid or malformed request body — missing required 'input' fields returns an error
- Model unavailable or overloaded — service timeout or 503 response
- Invalid HTTP method used (only GET is accepted) — method not allowed error
- Prompt content policy violation — image generation refused

## 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 JSON object containing the model name ('inkling-256k') and an output object with a URL pointing to the generated image hosted on GlianaAI's media endpoint (e.g. https://api.glianalabs.com/v1/media/<id>).

## 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": "inkling-256k",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-inkling-256k-text-to-image-generation-82b7dfbb/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)
