# Furigana Batch Converter (agentic-jp.com)

> Furigana Batch Converter (agentic-jp.com) is a paid API for AI agents from furigana.agentic-jp.com, paid per call via x402, $0.0016/call, status unknown (last checked 2026-09-15).

Converts a batch of Japanese text strings to furigana readings, returning per-item phonetic annotation results.

## Facts

- Endpoint: POST https://furigana.agentic-jp.com/batch
- Price: $0.0016/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/furigana-batch-converter-agentic-jp-com-0eeb74cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n3ZtAh0SyVZnf2K8FDgsq

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 furigana-batch-converter-agentic-jp-com-0eeb74cb -d '<json body>'
```

Example prompt: Can you add furigana readings to these five Japanese sentences: '日本語は難しい', '東京は大きな都市です', '私は学生です', '今日の天気はどうですか', '桜の花が咲いています'?

## When to prefer this

Use this endpoint when you need to process multiple Japanese text strings for furigana annotation in a single API call, rather than making individual requests per string. It is ideal for bulk annotation tasks such as preparing educational content, subtitles, or reading aids for Japanese learners.

## Known failure modes

- Non-Japanese or empty text inputs may return empty or error results per item
- Malformed request body (missing array) returns 400 error
- Payment failure via x402 protocol returns 402 Payment Required
- Rate limits or server errors return 5xx responses
- Very long strings or extremely large batches may be rejected or truncated

## How this service works

Run furigana / normalize / classify / convert over up to 100 Japanese (JP) text items in one call, with per-item success/error reporting. Dynamic pricing: a small per-item fee. Use to process a whole text column or import file at once.

## Output

An array of per-item results, each containing the original Japanese input string and its corresponding furigana (phonetic reading) annotation, suitable for rendering ruby text or displaying pronunciation guides.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "items": {
   "type": "array",
   "maxItems": 100
  },
  "options": {
   "type": "object"
  },
  "operation": {
   "enum": [
    "furigana",
    "normalize",
    "classify",
    "convert"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "id": "1",
    "success": true
   }
  ],
  "operation": "furigana"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/furigana-batch-converter-agentic-jp-com-0eeb74cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from furigana.agentic-jp.com](https://www.zero.xyz/host/furigana.agentic-jp.com/llms.txt)
