Skip to content
This repository was archived by the owner on Sep 15, 2024. It is now read-only.
이준희 edited this page Sep 6, 2024 · 3 revisions

Chart

경제 지표 요청(인플레이션, 선행지표)
Request
GET /chart/{chartName}?period=6m

Response

{
  "type": "LEADING_INDICATOR",
  "content": [
    {
      "announcedAt": "2024-09-06T10:39:41+0000",
      "actual": 1.2,
      "consensus": 1.2,
      "last": 1.1
    }
  ]
}

NewsFeed

게시글 읽어오기
Request
GET /feed?size=10cursor=

Response

{
  "content": [
    {
      "id": "2c59a6da-5f76-4f85-b71b-b08347a59d40"
      "profileImage": "url",
      "nickName":"nickName",
      "likeCount":0,
      "text":"text"
    }
  ],
  "nextCursor": "e8742001-416d-492b-aa23-5921b7277552"
}

게시글 생성
Request
`POST /feed

body

{
  "content": {
    "text": "long text"
  }
}

Response

{
  "id": "2c59a6da-5f76-4f85-b71b-b08347a59d40"
}

댓글 생성 Request POST /feed/{feedId}/comment

body

{
  "content": {
    "text": "long text"
  }
}

Clone this wiki locally