> ## 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 lookup 마이그레이션 개요

> Standard v1.1의 lists/show 및 lists/list와 X API v2 List lookup 엔드포인트를 비교합니다. 새로운 필드, expansion 및 인증 옵션을 포함합니다.

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 lookup 엔드포인트 비교

v2 List lookup 엔드포인트 그룹은 standard v1.1의 [GET lists/show](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-show) 및 [GET lists/ownership](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-ownerships) 엔드포인트를 대체합니다. 이러한 List lookup 엔드포인트 버전 중 하나를 사용하는 코드, 앱 또는 도구를 가지고 있고, 새로운 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/show.json`                                                                      | `/2/lists/:id`                                                                                |
| [인증](/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분당 75회 요청<br /><br />OAuth 2.0으로 15분당 75회 요청<br /><br />App only로 15분당 75회 요청 | OAuth 1.0a로 15분당 75회 요청<br /><br />OAuth 2.0으로 15분당 75회 요청<br /><br />App only로 15분당 75회 요청   |

**사용자가 소유한 List lookup**

|                                                         |                                                          |                                                                                               |
| :------------------------------------------------------ | :------------------------------------------------------- | :-------------------------------------------------------------------------------------------- |
| Description                                             | Standard v1.1                                            | X API v2                                                                                      |
| 지원되는 HTTP 메서드                                           | `GET`                                                    | `GET`                                                                                         |
| Host 도메인                                                | `https://api.x.com`                                      | `https://api.x.com`                                                                           |
| 엔드포인트 경로                                                | `/1.1/lists/ownerships.json`                             | `/2/users/:id/owned_lists`                                                                    |
| [인증](/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분당 15회 요청<br /><br />App only로 15분당 15회 요청 | OAuth 1.0a로 15분당 15회 요청<br /><br />OAuth 2.0으로 15분당 15회 요청<br /><br />App only로 15분당 15회 요청   |

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-lookup/introduction">
    퀵스타트
  </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>
