# GlianaAI TTS-1 — Text-to-Speech via Pay-Per-Call

> GlianaAI TTS-1 — Text-to-Speech via Pay-Per-Call is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.017/call, status unknown (last checked 2026-09-15).

Converts a text prompt into synthesized speech audio using the TTS-1 model, billed at $0.0175 USDC per call with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tts-1
- Price: $0.017/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-tts-1-text-to-speech-via-pay-per-call-2e128270
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qgrVvEkfHChtPCKnj64iy

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-tts-1-text-to-speech-via-pay-per-call-2e128270
```

Example prompt: Can you use GlianaAI's TTS-1 model to read this aloud: 'Welcome to our quarterly review. Today we'll cover sales performance and upcoming goals.' — pay per call in USDC, no account needed.

## When to prefer this

Choose this endpoint when you need on-demand text-to-speech synthesis without account registration or API key setup, especially when your agent can pay in USDC (Base, Solana, or Tempo) or card via x402/MPP. Ideal for autonomous agents that need pay-per-call audio generation without pre-committed subscriptions.

## Known failure modes

- Payment not settled — 402 response if USDC payment fails or is insufficient
- Invalid or missing prompt field — 400 validation error
- Model overload or unavailability — 503 or timeout
- Unsupported text content (e.g. too long) — may return error or truncated output
- Network failure during media URL retrieval after generation

## 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 with the model name used (tts-1), an output object containing a media URL or JSON payload with the generated audio, and the amount charged in micro-USD (costMicroUsd).

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-tts-1-text-to-speech-via-pay-per-call-2e128270/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)
