首頁專案文章關於我

API 文件

目錄

/api/project/list

GET取得專案清單資料

/api/project/content

GET取得專案內容資料

/api/article/list

GET取得文章清單資料

/api/article/content

GET取得文章內容資料

/api/project/list

專案清單

GET取得專案清單資料

SearchParams

參數名稱類型必要限制
countnumber正整數

Response example

{
  status: 200, body: [
    {
      "slug": "personal-website",
      "key_visual": "personal-website.png",
      "name": "個人網站",
      "description": "我為自己設計與開發的個人網站,在此展示我的專案、經歷與技能"
    },
  ]
}

{ status: 500, error: "System error, please try again later" }

/api/project/content

專案內容

GET取得專案內容資料

SearchParams

參數名稱類型必要限制
slugstring

Response example

{
  status: 200, body: {
    "id": 7,
    "slug": "personal-website",
    "name": "個人網站",
    "description": "我為自己設計與開發的個人網站,在此展示我的專案、經歷與技能",
    "key_visual": "personal-website.png",
    "link": "https://github.com/tzuhanchen/personal-website",
    "timeline": "2021/08 ~ 2023/07 ~ 2024/04 ~ 持續更新",
    "output": "網站",
    "skills": [
      {
        "id": 21,
        "name": "Next.js"
      }
    ],
    "members": [
      {
        "id": 16,
        "role_name": "網站前端",
        "members_name": "我"
      },
    ],
    "next": {
      "slug": "teamie",
      "name": "Teamie"
    },
    "prev": {
      "slug": "todo-list",
      "name": "待辦清單"
    }
  }
}

{ status: 404, error: "slug not provided" }

{ status: 404, error: "slug does not exist" }

{ status: 500, error: "System error, please try again later" }

/api/article/list

文章清單

GET取得專案清單資料

SearchParams

參數名稱類型必要限制
countnumber正整數

Response example

{
  status: 200, body: [
    {
      "slug": "digital-education",
      "key_visual": "digital-education.png",
      "name": "數位人才探索計畫",
      "description": "參加 Google 數位人才探索計畫的期間留下的紀錄"
    }
  ]
}

{ status: 500, error: "System error, please try again later" }

/api/article/content

文章內容

GET取得專案內容資料

SearchParams

參數名稱類型必要限制
slugstring

Response example

{
  status: 200, body: {
    "id": 2,
    "slug": "digital-education",
    "name": "數位人才探索計畫",
    "description": "參加 Google 數位人才探索計畫的期間留下的紀錄",
    "key_visual": "digital-education.png",
    "created_at": "2023-04-17T05:11:00.000Z",
    "updated_at": "2025-09-07T15:34:22.427Z",
    "tag": "活動紀錄",
    "next": {
      "slug": "shopback-meet",
      "name": "ShopBack: Meet The Engineers!"
    },
    "prev": {
      "slug": "shopback-meet",
      "name": "ShopBack: Meet The Engineers!"
    }
  }
}

{ status: 404, error: "slug not provided" }

{ status: 404, error: "slug does not exist" }

{ status: 500, error: "System error, please try again later" }