/v1/word
Best match for a keyword
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/jisho-api/v1/word" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/jisho-api/v1/word", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/jisho-api/v1/word");
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/word",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"word": {
"jlpt": [
"jlpt-n2"
],
"slug": "水分",
"tags": [],
"senses": [
{
"info": [],
"tags": [],
"see_also": [],
"parts_of_speech": [
"Noun"
],
"english_definitions": [
"water",
"liquid",
"fluid",
"moisture",
"humidity",
"sap",
"juice"
]
},
{
"info": [],
"tags": [],
"see_also": [],
"parts_of_speech": [
"Wikipedia definition"
],
"english_definitions": [
"Moisture"
]
}
],
"japanese": [
{
"word": "水分",
"reading": "すいぶん"
}
],
"is_common": true,
"attribution": {
"jmdict": true,
"dbpedia": "http://dbpedia.org/resource/Moisture",
"jmnedict": false
}
},
"keyword": "water"
},
"meta": {
"timestamp": "2026-06-08T09:48:52.040Z",
"request_id": "2d2648a4-5429-4d18-ac30-a115186c471e"
},
"status": "ok",
"message": "Word retrieved successfully",
"success": true
}