封面照片由 Christopher Gower 在 Unsplash 上拍攝
您是否正在開發語言學習應用程式、寫作助理或任何涉及單字並需要 API 來檢索單字意義的項目?免費字典 API 提供了一種免費且易於存取的方式,將語言資料合併到您的作品中。本文檔將向您展示如何開始。
由 meetDeveloper 開發的免費字典 API,在 GitHub 上擁有 2,600 顆星。 API 僅支援 GET 請求,並提供單字定義和音標。
https://api.dictionaryapi.dev/api/v2/entries/en/
此端點檢索指定英文單字的字典資訊。
API有兩個版本:v1和v2。主要區別在於響應結構。目前版本是 v2。
API傳回一個JSON數組,其中包含單個對象,其中包含有關單字的詳細信息,包括:
const word = "documentation"; fetch(`https://api.dictionaryapi.dev/api/v2/entries/en/${word}`) .then(response => response.json()) .then(data => console.log(data));
[ { "word": "documentation", "phonetic": "/ˌdɒkjʊmənˈteɪʃən/", "phonetics": [ { "text": "/ˌdɒkjʊmənˈteɪʃən/", "audio": "" }, { "text": "/ˌdɑkjəmənˈteɪʃən/", "audio": "" } ], "meanings": [ { "partOfSpeech": "noun", "definitions": [ { "definition": "Something transposed from a thought to a document; the written account of an idea.", "synonyms": [], "antonyms": [] }, { "definition": "Documentary evidence and sources.", "synonyms": [], "antonyms": [] }, { "definition": "Documents that explain the operation of a particular machine or software program.", "synonyms": [], "antonyms": [] }, { "definition": "Comments that explain the usage of individual functions, libraries and blocks of code.", "synonyms": [], "antonyms": [] } ], "synonyms": [], "antonyms": [] } ], "license": { "name": "CC BY-SA 3.0", "url": "https://creativecommons.org/licenses/by-sa/3.0" }, "sourceUrls": [ "https://en.wiktionary.org/wiki/documentation" ] } ]
const word = "Software engineer"; fetch(`https://api.dictionaryapi.dev/api/v2/entries/en/${word}`) .then(response => response.json()) .then(data => console.log(data));
{ "title": "No Definitions Found", "message": "Sorry pal, we couldn't find definitions for the word you were looking for.", "resolution": "You can try the search again at later time or head to the web instead." }
該API目前不回傳特定的成功或錯誤代碼。
要嘗試該 API 或支援 Free Dictionary API,請造訪 Free Dictionary API 網站。
另請參閱 Github 上的免費字典 API 專案。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3