兵庫県教育委員会が提供する英単語を取得できるRESTful APIです。
- 開発環境host: http://localhost:3000
- 本番環境host: https://vocab-api-3200862867fa.herokuapp.com
- メソッド: GET
- パス: /words
- レスポンス: 英単語の配列
[
{
"id": 1,
"word": "apple",
"type": "名",
"meaning": "りんご",
"example": "I ate an apple."
},
...
]
- メソッド: GET
- パス: /words/:id
- レスポンス: 英単語のオブジェクト
{
"id": 1,
"word": "apple",
"type": "名",
"meaning": "りんご",
"example": "I ate an apple."
}
make setup
make up
make test