Christopher Gower による Unsplash のカバー写真
言語学習アプリ、ライティングアシスタント、または単語に関係するプロジェクトを開発していて、単語の意味を取得する API が必要ですか? Free Dictionary API は、言語データを作品に組み込むための無料でアクセス可能な方法を提供します。このドキュメントでは、開始方法を説明します。
meetDeveloper によって開発された無料の辞書 API で、GitHub に 2.6k のスターが付いています。 API は GET リクエストのみをサポートし、発音表記とともに単語の定義を提供します。
https://api.dictionaryapi.dev/api/v2/entries/en/
このエンドポイントは、指定された英単語の辞書情報を取得します。
API には v1 と v2 の 2 つのバージョンがあります。主な違いは応答構造にあります。現在のバージョンは 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 を試すか、無料辞書 API をサポートするには、無料辞書 API ウェブサイトにアクセスしてください。
Github の無料辞書 API プロジェクトも参照してください。
免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。
Copyright© 2022 湘ICP备2022001581号-3