> ## 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.

# List Posts 엔드포인트 마이그레이션 개요

> 매개변수, 인증 및 페이지네이션 차이점을 포함하여 Standard v1.1 lists/statuses와 X API v2 List Posts 엔드포인트를 비교합니다.

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>;
};

## X API의 List Posts lookup 엔드포인트 비교

v2 List Posts lookup 엔드포인트는 standard v1.1 [GET lists/statuses](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-statuses)를 대체합니다. 이 버전의 엔드포인트를 사용하는 코드, 앱 또는 도구를 가지고 있고, 새로운 X API v2 엔드포인트로 마이그레이션을 고려하고 있다면 이 가이드 세트가 도움이 될 것입니다.

다음 표는 standard v1.1과 X API v2의 List 엔드포인트를 비교합니다:

**ID로 List Lookup**

|                                                         |                                                            |                                                                                                |
| :------------------------------------------------------ | :--------------------------------------------------------- | :--------------------------------------------------------------------------------------------- |
| Description                                             | Standard v1.1                                              | X API v2                                                                                       |
| 지원되는 HTTP 메서드                                           | `GET`                                                      | `GET`                                                                                          |
| Host 도메인                                                | `https://api.x.com`                                        | `https://api.x.com`                                                                            |
| 엔드포인트 경로                                                | `/1.1/lists/statuses.json`                                 | `/2/lists/:id/tweets`                                                                          |
| [인증](/resources/fundamentals/authentication)            | OAuth 1.0a User Context<br /><br />App only                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only  |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits) | OAuth 1.0a로 15분당 900회 요청<br /><br />App only로 15분당 900회 요청 | OAuth 1.0a로 15분당 900회 요청<br /><br />OAuth 2.0으로 15분당 900회 요청<br /><br />App only로 15분당 900회 요청 |

X API v2 엔드포인트에 액세스하려면 [developer account에 가입](https://developer.x.com/en/portal/petition/essential/basic-info)해야 합니다. 인증할 때는 [Project](/resources/fundamentals/developer-apps) 내에 있는 [developer App](/resources/fundamentals/developer-apps)의 key와 token을 사용해야 합니다.

X API v2 엔드포인트에 액세스하는 방법에 대해 자세히 알아보려면 [시작하기](/x-api/getting-started/getting-access) 페이지를 참조하세요.

<div className="flex space-x-2">
  <Button href="/x-api/lists/list-tweets/quickstart">
    퀵스타트
  </Button>

  <Button href="https://github.com/xdevplatform/Twitter-API-v2-sample-code">
    예제 코드
  </Button>

  <Button href="https://www.postman.com/xapidevelopers/x-api-public-workspace/collection/34902927-2efc5689-99c6-4ab6-8091-996f35c2fd80">
    Postman에서 실행
  </Button>
</div>
