# GlianaAI — ElevenLabs Turbo v2.5 Text-to-Speech

> GlianaAI — ElevenLabs Turbo v2.5 Text-to-Speech is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Converts text to speech audio using ElevenLabs Turbo v2.5 model via pay-per-call inference, returning a hosted audio URL.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/eleven-turbo-v2-5
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-elevenlabs-turbo-v2-5-text-to-speech-02cf657c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mmeZyirusRerDXysfLLPY

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-elevenlabs-turbo-v2-5-text-to-speech-02cf657c
```

Example prompt: Use ElevenLabs Turbo v2.5 on GlianaAI to read aloud this product description: 'Introducing the Nova X smartwatch — your health companion for every adventure.' Pay with USDC and give me a link to the audio.

## When to prefer this

Choose this endpoint when you need fast, high-quality text-to-speech synthesis using ElevenLabs Turbo v2.5 specifically, want pay-per-call billing in USDC with no subscription or signup, and need a hosted audio URL returned directly. Prefer this over general TTS APIs when you want crypto-native micropayment settlement on Base, Tempo, or Solana chains, or when you need to avoid SaaS subscription commitments for low-volume or bursty usage.

## Known failure modes

- Missing or empty input text returns an error
- Insufficient USDC balance causes payment failure and 402 response
- Model temporarily unavailable returns a service error
- Invalid body type or HTTP method returns a schema validation error
- Audio generation timeout for very long text inputs

## How this service works

GlianaAI - pay-per-call AI: LLM chat (OpenAI-compatible), image, video, music, speech - 90+ models, no signup, USDC. This resource: eleven-turbo-v2-5 (Text-to-Speech). https://ai.glianalabs.com

## Output

Returns a JSON object with the model name ('eleven-turbo-v2-5') and an output object containing a URL pointing to the generated audio file hosted at 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": "eleven-turbo-v2-5",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-elevenlabs-turbo-v2-5-text-to-speech-02cf657c/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)
