Zum Inhalt springen
GET /v1/list

A standard kanji set with paging

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/kanji-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/kanji-api/v1/list" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kanji-api/v1/list", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kanji-api/v1/list");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/kanji-api/v1/list",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "set": "grade-1",
        "count": 50,
        "kanji": [
            "一",
            "七",
            "三",
            "上",
            "下",
            "中",
            "九",
            "二",
            "五",
            "人",
            "休",
            "先",
            "入",
            "八",
            "六",
            "円",
            "出",
            "力",
            "十",
            "千",
            "口",
            "右",
            "名",
            "四",
            "土",
            "夕",
            "大",
            "天",
            "女",
            "子",
            "字",
            "学",
            "小",
            "山",
            "川",
            "左",
            "年",
            "手",
            "文",
            "日",
            "早",
            "月",
            "木",
            "本",
            "村",
            "林",
            "校",
            "森",
            "正",
            "気"
        ],
        "total": 80,
        "offset": 0
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:44.877Z",
        "request_id": "64d39746-9a3b-4e47-b844-f386140fda14"
    },
    "status": "ok",
    "message": "Kanji set retrieved",
    "success": true
}