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

# Post Lookup

> Post lookup 엔드포인트를 사용하면 ID로 하나 이상의 게시물을 조회할 수 있습니다. lookup을 다루는 X API v2 standard 티어 레퍼런스입니다.

export const Button = ({href, children}) => {
  return <div className="not-prose">
    <a href={href}>
      <button className="x-btn">
        <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>;
};

Post lookup 엔드포인트를 사용하면 ID로 하나 이상의 게시물을 조회할 수 있습니다. 이 엔드포인트로 최신 게시물 정보 확인, 게시물 유효성 확인, 편집 히스토리 검사 등을 수행하세요.

## 개요

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

* 최대 280자의 텍스트
* 첨부 미디어(이미지, 동영상, GIF)
* Polls, places, URLs
* 답글, quotes, mentions

게시물은 생성 후 30분 이내에 최대 5회까지 편집할 수 있습니다. 각 편집은 새로운 Post ID를 생성하며, 편집 히스토리가 보존됩니다.

<CardGroup cols={2}>
  <Card title="단일 게시물" icon="https://mintcdn.com/x-preview/ygI6sSJPehlc0qNT/icons/xds/icon-chat.svg?fit=max&auto=format&n=ygI6sSJPehlc0qNT&q=85&s=9fde7d51b4f18c96d3a38a81d519761f" width="24" height="24" data-path="icons/xds/icon-chat.svg">
    ID로 특정 게시물 조회
  </Card>

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

  <Card title="편집 히스토리" icon="https://mintcdn.com/x-preview/szd6PKNMlRQoyyAo/icons/xds/icon-history.svg?fit=max&auto=format&n=szd6PKNMlRQoyyAo&q=85&s=6afe17587c08ee621e37afde19a07ff1" width="24" height="24" data-path="icons/xds/icon-history.svg">
    게시물의 전체 편집 히스토리에 접근
  </Card>

  <Card title="확장 객체" icon="diagram-project">
    작성자, 미디어, poll 등을 포함
  </Card>
</CardGroup>

***

## 사용 사례

* **게시물 콘텐츠 표시** — 애플리케이션에 게시물 세부정보 표시
* **유효성 확인** — 게시물이 여전히 존재하는지 삭제되었는지 확인
* **컴플라이언스 관리** — 컴플라이언스 이벤트를 위한 게시물 변경 추적
* **분석** — 특정 게시물의 참여 지표 조회

***

## 엔드포인트

| Method | Endpoint                                       | Description             |
| :----- | :--------------------------------------------- | :---------------------- |
| GET    | [`/2/tweets/:id`](/x-api/posts/get-post-by-id) | ID로 단일 게시물 조회           |
| GET    | [`/2/tweets`](/x-api/posts/get-posts-by-ids)   | ID로 다중 게시물 조회 (최대 100개) |

***

## 시작하기

<Note>
  **사전 요구사항**

  * 승인된 [developer account](https://developer.x.com/en/portal/petition/essential/basic-info)
  * Developer Console 내의 [Project와 App](/resources/fundamentals/developer-apps)
  * App의 [keys and tokens](/resources/fundamentals/authentication)
</Note>

<CardGroup cols={2}>
  <Card title="퀵스타트" icon="https://mintcdn.com/x-preview/oR-aRNyj1BKPJtxM/icons/xds/icon-rocket.svg?fit=max&auto=format&n=oR-aRNyj1BKPJtxM&q=85&s=b978d7a9225de31709efbbed5b84e92d" href="/x-api/posts/lookup/quickstart" width="24" height="24" data-path="icons/xds/icon-rocket.svg">
    첫 Post lookup 요청 만들기
  </Card>

  <Card title="통합 가이드" icon="https://mintcdn.com/x-preview/Vn2KEkZaPF9LiPi3/icons/xds/icon-book.svg?fit=max&auto=format&n=Vn2KEkZaPF9LiPi3&q=85&s=22ac564792481d14ae36a941546039c8" href="/x-api/posts/lookup/integrate" width="24" height="24" data-path="icons/xds/icon-book.svg">
    핵심 개념 및 모범 사례 익히기
  </Card>

  <Card title="API 레퍼런스" icon="https://mintcdn.com/x-preview/ygI6sSJPehlc0qNT/icons/xds/icon-code.svg?fit=max&auto=format&n=ygI6sSJPehlc0qNT&q=85&s=488e23401b19225b89acc0136d242219" href="/x-api/posts/get-post-by-id" width="24" height="24" data-path="icons/xds/icon-code.svg">
    전체 엔드포인트 문서 보기
  </Card>

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