# GEDX402 Aura-1 Text-to-Speech

> GEDX402 Aura-1 Text-to-Speech is a paid API for AI agents from media.gedx402.com, paid per call via x402, $0.152/call, status unknown (last checked 2026-09-15).

Converts input text to speech audio using the Aura-1 model, returning base64-encoded audio, paid per-call with USDC via x402 protocol.

## Facts

- Endpoint: GET https://media.gedx402.com/v1/tts/aura-1
- Price: $0.152/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-aura-1-text-to-speech-e5bd7fce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gmDCotYurBufCWMkX8nqe

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 gedx402-aura-1-text-to-speech-e5bd7fce
```

Example prompt: Can you turn this text into spoken audio using the Aura-1 voice model: 'Welcome to our platform, we are glad to have you here.'

## When to prefer this

Choose this endpoint when you need TTS synthesis without registering for an API key, want to pay per-call using USDC on Base, Polygon, Arbitrum, World, or Solana, or when integrating into an x402-compatible payment workflow. Prefer this over traditional TTS APIs for crypto-native or API-key-free agentic workflows using the Aura-1 model.

## Known failure modes

- Payment failure if USDC balance is insufficient or unsupported chain is used
- Empty or missing text parameter returns an error
- Invalid voice ID may fall back to default or return an error
- Network timeout on slow synthesis for long text
- Base64 output may be large for lengthy text inputs

## How this service works

x402 workers ai. pay with usdc on base, polygon, arbitrum, world, or solana. no api keys.

## Output

A JSON object containing a base64-encoded audio string representing the synthesized speech for the provided text, ready to be decoded and played back.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to synthesize into speech."
  },
  "voice": {
   "type": "string",
   "description": "Optional voice id when the model supports multiple voices."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "audio": "<base64>"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-aura-1-text-to-speech-e5bd7fce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from media.gedx402.com](https://www.zero.xyz/host/media.gedx402.com/llms.txt)
