⛷️main/

메인페이지 관련 api입니다.

오늘의 꽃 조회

GET /main/today

Headers

Name
Value

Content-Type

application/json

Body

Response

{
    "Flower": "진달래",  (String)
    "period": "06",   (String)
    "flower_language":"우정",   (String)
    "explain":"나 보기가 역겨워 가실 때는",   (String)
    "image":"URL"   (URL)
  }

시즌 꽃 조회

GET /main/season

Headers

Name
Value

Content-Type

application/json

Body

Response

[
  {
    "Flower": "진달래",  (String)
    "period": "07",   (String)
    "flower_language":"우정",   (String)
    "explain":"나 보기가 역겨워 가실 때는",   (String)
    "image":"URL"   (URL)
  },
  {
    "Flower": "무궁화",
    "period": "07",
    "flower_language":"영원",
    "explain":"무궁화 꽃이 피었습니다",
    "image":"URL"
  },
  {
    "Flower": "무궁화",
    "period": "07",
    "flower_language":"영원",
    "explain":"무궁화 꽃이 피었습니다",
    "image":"URL"
  },, 이렇게 5개개
]

Last updated