/v1/meta
Spec
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}