# GoCreative AI Text-to-Speech (Kokoro)

> GoCreative AI Text-to-Speech (Kokoro) is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts a text prompt into natural-sounding AI voice audio using the Kokoro TTS engine, returning an audio URL.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/ai/speech/:var1
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-ai-text-to-speech-kokoro-0586880a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ReHt6tG53FcxSbncLGhcT

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 gocreative-ai-text-to-speech-kokoro-0586880a
```

Example prompt: Can you turn this text into spoken audio: 'Welcome to our platform, we're glad you're here.' — I need a natural-sounding AI voice and just the URL to the audio file.

## When to prefer this

Choose this endpoint when you need a keyless, pay-per-call TTS solution with no API key or signup required, especially suitable for AI agents operating autonomously on Base or Solana with USDC micropayments. It is ideal for low-volume or ad-hoc narration, voice bot replies, or accessibility features where Kokoro's natural voice quality is acceptable and cost per call ($0.01) is a priority.

## Known failure modes

- Empty or missing input query parameter returns an error
- Extremely long text inputs may be truncated or rejected
- Payment failure (insufficient USDC balance) results in HTTP 402 and no audio generated
- Network timeout if audio generation takes too long
- Unsupported characters or languages in input may produce degraded or silent audio

## How this service works

Returns natural AI voice audio URL from text prompt via Kokoro. Agents: voice bots, accessibility, narration, TTS. Keywords: text-to-speech, TTS API, voice generation, audio synthesis, AI voice. Keyless, pay-per-call USDC on Base/Solana, $0.01/call, no API key, no signup.

## Output

A URL pointing to a generated audio file containing the natural-sounding AI voice reading the provided text input, produced by the Kokoro TTS engine.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-ai-text-to-speech-kokoro-0586880a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
