# GlianaAI — ElevenLabs Multilingual v2 Text-to-Speech

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

Converts text to natural-sounding speech using ElevenLabs Multilingual v2 model, returning a hosted audio URL, billed per-call in USDC via x402.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/eleven-multilingual-v2
- Price: $0.06/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-multilingual-v2-text-to-speech-f1df2ae3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GfSiI1aVwKQgN0ETfHkWK

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-multilingual-v2-text-to-speech-f1df2ae3
```

Example prompt: Use GlianaAI's ElevenLabs Multilingual v2 model to turn this script into spoken audio: 'Welcome to our platform. We're glad you're here.' — pay per call in USDC and give me the audio URL when it's done.

## When to prefer this

Choose this endpoint when you need high-quality multilingual text-to-speech synthesis via ElevenLabs Multilingual v2 without account signup, paying only per request in USDC. Prefer it over generic TTS APIs when multilingual fidelity and natural prosody are important, and when you want frictionless crypto-native pay-per-call billing on Base, Solana, or Tempo.

## Known failure modes

- Missing or empty input text returns an error
- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Unsupported language or voice settings may produce degraded or silent audio
- Rate limiting or upstream ElevenLabs service unavailability may cause 503 errors
- Extremely long input text may exceed model limits and fail or be truncated

## 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-multilingual-v2 (Text-to-Speech). https://ai.glianalabs.com

## Output

Returns a JSON object containing the model name ('eleven-multilingual-v2') and an output object with a hosted URL pointing to the generated audio file (e.g. https://api.glianalabs.com/v1/media/<id>) that can be streamed or downloaded.

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

## More

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