ToolAssay

Convert kanji-mixed Japanese (JP) text to hiragana, katakana, or romaji (Hepburn

Convert kanji-mixed Japanese (JP) text to hiragana, katakana, or romaji (Hepburn/Nippon/Passport), with a per-token breakdown of surface form, reading, and part-of-speech. Backed by the kuromoji morphological analyzer. Use to generate ruby readings, build search indexes, or preprocess text for speech synthesis.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
723 msmedian answer time
$0.005listed price per call
$0.005price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://furigana.agentic-jp.com/furigana

CategoryMarket data
Provider hostfurigana.agentic-jp.com
Networkseip155:137, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days3 from 3 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.005 723 ms

Example input (from the provider)

{
  "body": {
    "options": {
      "mode": "normal",
      "romaji_style": "hepburn",
      "to": "hiragana"
    },
    "text": "\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a\u6c38\u7530\u753a"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "options": {
              "properties": {
                "mode": {
                  "enum": [
                    "normal",
                    "furigana",
                    "okurigana"
                  ],
                  "type": "string"
                },
                "romaji_style": {
                  "enum": [
                    "hepburn",
                    "nippon",
                    "passport"
                  ],
                  "type": "string"
                },
                "to": {
                  "enum": [
                    "hiragana",
                    "katakana",
                    "romaji"
                  ],
                  "type": "string"
                }
              },
              "type": "object"
            },
            "text": {
              "description": "Japanese kanji-mixed text to convert to a reading",
              "maxLength": 5000,
              "type": "string"
            }
          },
          "required": [
            "text"
          ]
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON