Skip to content

Koe-eigh/vocab-api

Repository files navigation

Vocab API

兵庫県教育委員会が提供する英単語を取得できるRESTful APIです。

APIエンドポイント

全件取得

  • メソッド: GET
  • パス: /words
  • レスポンス: 英単語の配列
[
  {
    "id": 1,
    "word": "apple",
    "type": "",
    "meaning": "りんご",
    "example": "I ate an apple."
  },
  ...
]

指定IDの取得

  • メソッド: GET
  • パス: /words/:id
  • レスポンス: 英単語のオブジェクト
{
  "id": 1,
  "word": "apple",
  "type": "",
  "meaning": "りんご",
  "example": "I ate an apple."
}

開発者向け

セットアップ

make setup

開発サーバーの起動

make up

テスト

make test

About

英単語を返すだけのRestAPIです

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published