> ## Documentation Index
> Fetch the complete documentation index at: https://generaltranslation.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 게시물 조회

> ID로 포스트를 가져와 세부 정보를 확인하고, 사용 가능 여부를 확인하며, 수정 이력을 검토합니다

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-full group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
        <svg width="3" height="24" viewBox="0 -9 3 24" class="h-6 rotate-0 overflow-visible"><path d="M0 0L3 3L0 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path></svg>
      </button>
    </a>
  </div>;
};

게시물 조회 엔드포인트를 사용하면 ID로 하나 이상의 포스트를 조회할 수 있습니다. 이러한 엔드포인트를 사용하여 최신 포스트 세부 정보를 가져오거나, 포스트 이용 가능 여부를 확인하거나, 수정 이력을 확인할 수 있습니다.

<div id="overview">
  ## 개요
</div>

포스트는 X에서 핵심이 되는 콘텐츠입니다. 각 게시물에는 다음이 포함될 수 있습니다:

* 최대 280자의 텍스트
* 첨부 미디어(이미지, 동영상, GIF)
* 투표, 장소, URL
* 답글, 인용, 멘션

게시물은 생성 후 30분 이내에 최대 5번까지 수정할 수 있습니다. 수정할 때마다 새로운 게시물 ID가 생성되며, 수정 이력은 보존됩니다.

<CardGroup cols={2}>
  <Card title="단일 게시물" icon="message">
    ID로 특정 게시물을 조회합니다
  </Card>

  <Card title="여러 게시물" icon="messages">
    한 번의 요청으로 최대 100개의 게시물을 조회합니다
  </Card>

  <Card title="수정 이력" icon="clock-rotate-left">
    게시물의 전체 수정 이력을 열람합니다
  </Card>

  <Card title="확장 객체" icon="diagram-project">
    작성자, 미디어, 투표 등 추가 정보를 포함할 수 있습니다
  </Card>
</CardGroup>

***

<div id="use-cases">
  ## 사용 사례
</div>

* **게시물 콘텐츠 표시** — 애플리케이션에서 게시물 세부 정보를 표시합니다
* **가용성 확인** — 게시물이 여전히 존재하는지, 삭제되었는지 확인합니다
* **컴플라이언스 관리** — 컴플라이언스 이벤트를 위해 게시물 변경 사항을 추적합니다
* **애널리틱스** — 특정 포스트에 대한 참여 지표를 조회합니다

***

<div id="endpoints">
  ## 엔드포인트
</div>

| 메서드 | 엔드포인트                                             | 설명                         |
| :-- | :------------------------------------------------ | :------------------------- |
| GET | [`/2/tweets/:id`](/ko/x-api/posts/get-post-by-id) | ID로 단일 게시물을 가져옵니다          |
| GET | [`/2/tweets`](/ko/x-api/posts/get-posts-by-ids)   | 여러 포스트를 ID로 가져옵니다(최대 100개) |

***

<div id="getting-started">
  ## 시작하기
</div>

<Note>
  **사전 준비 사항**

  * 승인된 [개발자 계정](https://developer.x.com/en/portal/petition/essential/basic-info)
  * 개발자 콘솔의 [Project 및 App](/ko/resources/fundamentals/developer-apps)
  * App의 [키 및 토큰](/ko/resources/fundamentals/authentication)
</Note>

<CardGroup cols={2}>
  <Card title="빠른 시작" icon="rocket" href="/ko/x-api/posts/lookup/quickstart">
    첫 게시물 조회 요청을 수행해 보세요
  </Card>

  <Card title="통합 가이드" icon="book" href="/ko/x-api/posts/lookup/integrate">
    주요 개념과 모범 사례를 알아보세요
  </Card>

  <Card title="API 참조 문서" icon="code" href="/ko/x-api/posts/get-post-by-id">
    전체 엔드포인트 문서를 확인하세요
  </Card>

  <Card title="샘플 코드" icon="github" href="https://github.com/xdevplatform/Twitter-API-v2-sample-code">
    코드 예제를 살펴보세요
  </Card>
</CardGroup>
