Naar de inhoud
GET /v1/meta

Spec

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/jisho-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/jisho-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/jisho-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/jisho-api/v1/meta");
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/jisho-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "service": "jisho-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/word": "The single best (preferably common) match for a keyword (keyword=).",
            "GET /v1/search": "Search the dictionary (keyword=, common=1, limit=). Accepts English, romaji, kana or kanji."
        },
        "description": "Japanese-English dictionary data via the open Jisho.org API: search words and kanji compounds with Japanese writings (word + reading), English senses, parts of speech, JLPT level and a common-word flag; or fetch the single best (preferably common) match for a keyword. Real dictionary data, no key."
    },
    "meta": {
        "timestamp": "2026-06-08T09:48:52.156Z",
        "request_id": "abad1eeb-101e-48b4-afd6-35b4b21e60c7"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}