# 24K Labs Phonetic Transcoder

> 24K Labs Phonetic Transcoder is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Converts text into phonetic notation or transcription (e.g. IPA, Morse code, or similar phonetic representations)

## Facts

- Endpoint: POST https://api.24klabs.ai/api/phonetic-transcode
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/24k-labs-phonetic-transcoder-f79e4b30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ln6ZxJDtBKZ0jvsWbfVv0

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 24k-labs-phonetic-transcoder-f79e4b30 -d '<json body>'
```

Example prompt: Can you phonetically transcode the word 'schedule' into IPA notation for me?

## When to prefer this

Choose this endpoint when you need fast, low-cost phonetic transcription of text — especially for generating Morse code, IPA pronunciation guides, or NATO phonetic alphabet expansions. It is well-suited for linguistics tools, accessibility features, pronunciation aids, or communication training apps where sub-cent per-call pricing matters.

## Known failure modes

- Empty or missing input text returns an error
- Unsupported characters or scripts may not transcode correctly
- Very long strings may exceed input limits
- Ambiguous transcription mode (e.g. IPA vs Morse vs NATO) if not specified may return unexpected format
- Non-Latin scripts may not be supported

## How this service works

A curated directory of x402 services — each one on the list on purpose, with the health, uptime, and independent trust grades from across the ecosystem gathered in one place.

## Output

A JSON object containing a 'result' field with the phonetically transcoded output — such as IPA symbols, Morse code dots and dashes (e.g. '... --- ...'), or NATO phonetic equivalents — representing the input text in the requested phonetic format.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "op": {
   "type": "string"
  },
  "text": {
   "type": "string"
  },
  "scheme": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "... --- ..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/24k-labs-phonetic-transcoder-f79e4b30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
