표지 사진: Christopher Gower, Unsplash
언어 학습 앱, 글쓰기 도우미 또는 단어와 관련된 프로젝트를 개발 중이고 단어 의미를 검색하기 위한 API가 필요합니까? 무료 사전 API는 언어 데이터를 작업에 통합할 수 있는 무료이며 접근 가능한 방법을 제공합니다. 이 문서에서는 시작하는 방법을 보여줍니다.
metDeveloper가 개발한 무료 Dictionary API이며 GitHub에 2600개의 별이 있습니다. 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의 Free Dictionary API 프로젝트도 참조하세요.
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3