# Kokoro 82m

> Kokoro 82M. Generate natural-sounding speech from text using Kokoro 82M. Triggers: audio generation, kokoro

- Skill: `awesome-genmedia/kokoro-82m` (Agent Skill)
- Install (CLI): `npx skillmds@latest add awesome-genmedia/kokoro-82m`
- Raw SKILL.md: https://api.skillmd.com/api/skills/awesome-genmedia/kokoro-82m/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: awesome-genmedia (https://skillmd.com/u/awesome-genmedia)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/awesome-genmedia/kokoro-82m

---


# Kokoro 82M

Generate natural-sounding speech from text using Kokoro 82M.

## Quick Start

> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).

```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "kokoro-82m",
    "version": "0.0.1",
    "input": {
      "text": "Hello, welcome to our platform. We are excited to have you here.",
      "voice": "af_heart"
    }
  }'
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `speed` | number | 1 | Speech speed multiplier (0.5 = half speed, 2.0 = double speed) |
| `text` | string |  | Text input (long text is automatically split into smaller chunks) |
| `voice` | string | af | An enumeration.. Options: `af`, `af_bella`, `af_sarah`, `am_adam`, `am_michael`, `bf_emma`, `bf_isabella`, `bm_george`, `bm_lewis`, `af_nicole`, `a... |

## Examples

**Generate speech:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "kokoro-82m",
    "version": "0.0.1",
    "input": {
      "text": "Hello, welcome to our platform. We are excited to have you here.",
      "voice": "af_heart"
    }
  }'
```

**Custom voice and speed:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "kokoro-82m",
    "version": "0.0.1",
    "input": {
      "text": "The quick brown fox jumps over the lazy dog. This is a test of natural speech synthesis.",
      "voice": "af_bella",
      "speed": 1.2
    }
  }'
```

## Documentation

- [each::labs Docs](https://docs.eachlabs.ai)
- [API Reference](https://docs.eachlabs.ai/api/overview)

