# GlianaAI TTS-1-HD Text-to-Speech

> GlianaAI TTS-1-HD Text-to-Speech is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.033/call, status unknown (last checked 2026-09-13).

Converts text to high-definition speech audio using OpenAI's tts-1-hd model, billed per call in USDC via x402 with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tts-1-hd
- Price: $0.033/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-tts-1-hd-text-to-speech-035e7250
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LTAkoYrCXxDa0pdBql6se

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-hd-text-to-speech-035e7250
```

Example prompt: Use GlianaAI's tts-1-hd endpoint to read this aloud in high-definition audio: 'Welcome to our store. We're happy to have you here today.'

## When to prefer this

Choose this endpoint when you need high-definition text-to-speech audio generation without a pre-existing API key or account, and you want to pay per-call in USDC (Base, Solana, or Tempo) or by card via x402 micropayment protocol. Ideal for agents that need on-demand narration without subscription overhead.

## Known failure modes

- Missing or empty prompt field returns validation error
- Payment failure or insufficient USDC balance causes 402 rejection
- Prompt too long exceeds model context limits
- Network timeout during audio generation
- Unsupported characters or language in prompt may produce degraded output

## 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-hd), an output object containing a media URL or JSON 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-hd",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-tts-1-hd-text-to-speech-035e7250/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)
