> For the complete documentation index, see [llms.txt](https://youtube-community.gitbook.io/youtube-community/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://youtube-community.gitbook.io/youtube-community/undefined-1/undefined/undefined-5.md).

# 자유 게시판 게시글 상세 조회

GET /api/freeboard/{freeboard-id}

### Status Code

```
200: 게시글 조회
404: 존재하지 않음
500: 서버 에러
```

### Response Body

```json
{
      "freeBoardId": long, 
      "title": "질문 제목", // 게시글 제목 
      "content": "질문 내용", // 게시글 내용 
      "commentCount" : long, // 댓글수
      "likeCount" : long, // 좋아요수
      "viewCount" : long, // 조회수
      "categoryName" : String, // 카테고리
      "tags" : [
                  {
                        "tagId" : long,
                        "tagName" : String
                  },
                  ... // 태그 개수 만큼
      ],
      "createdAt": LocalDateTime, // (ex 2023-04-19T12:05:43.529109)
      "modifiedAt": LocalDateTime, // (ex 2023-04-19T12:05:43.529109)
      "memberId": long, 
      "email": string, // 작성자 이메일
      "nickname": string, // 작성자 닉네임
      "profileImageUrl" : String //프로필이미지,
      "bookmarked": false,
      "liked": false
}
      
```
