--- robots: noindex, nofollow --- # 那瀾陀 會員系統 API List ## Domain `正式: https://nbtaichung.org/` ## 1. 驗證身分 ### Endpoint `/api/login` ### Method `POST` ### Head ### Request email: String password: String ### Response ```typescript= { "status": true, "msg": "成功登入", "access_token": "Ayxx............" } ``` ## 2. 取得會員資料 ### Endpoint `/api/user` ### Method `GET` ### Head Authorization Bearer {access_token} ### Request NONE ### Response ```typescript= { "user":{ "id": "1", "email": "anbon@anbon.tw", "username": "anbon" }, "status":true, "msg":"取得成功" } ```