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

# 개요

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

<div id="comparing-x-apis-list-lookup-endpoints">
  ## X API의 리스트 조회 엔드포인트 비교
</div>

v2 리스트 조회 엔드포인트 그룹은 표준 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) 엔드포인트를 대체합니다. 이러한 버전의 리스트 조회 엔드포인트를 사용하는 코드, 앱 또는 도구가 있고 최신 X API v2 엔드포인트로 마이그레이션을 고려 중이라면, 이 가이드 모음이 도움이 됩니다.

다음 표는 표준 v1.1과 X API v2 리스트 엔드포인트를 비교합니다:

**id로 리스트 조회**

|                                                       |                                                                                                        |                                                                                                        |
| :---------------------------------------------------- | :----------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------- |
| 설명                                                    | 표준 v1.1                                                                                                | X API v2                                                                                               |
| 지원되는 HTTP 메서드                                         | `GET`                                                                                                  | `GET`                                                                                                  |
| 호스트 도메인                                               | `https://api.x.com`                                                                                    | `https://api.x.com`                                                                                    |
| 엔드포인트 경로                                              | `/1.1/lists/show.json`                                                                                 | `/2/lists/:id`                                                                                         |
| [인증](/ko/resources/fundamentals/authentication)       | OAuth 1.0a 사용자 컨텍스트<br /><br />App only                                                                | OAuth 1.0a 사용자 컨텍스트<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only              |
| 기본 요청 [요청 한도](/ko/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건 요청 |

**사용자 소유 리스트 조회**

|                                                       |                                                                  |                                                                                                        |
| :---------------------------------------------------- | :--------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------- |
| 설명                                                    | 표준 v1.1                                                          | X API v2                                                                                               |
| 지원되는 HTTP 메서드                                         | `GET`                                                            | `GET`                                                                                                  |
| 호스트 도메인                                               | `https://api.x.com`                                              | `https://api.x.com`                                                                                    |
| 엔드포인트 경로                                              | `/1.1/lists/ownerships.json`                                     | `/2/users/:id/owned_lists`                                                                             |
| [인증](/ko/resources/fundamentals/authentication)       | OAuth 1.0a 사용자 컨텍스트<br /><br />App only                          | OAuth 1.0a 사용자 컨텍스트<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only              |
| 기본 요청 [요청 한도](/ko/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 엔드포인트에 액세스하려면 [개발자 계정에 가입](https://developer.x.com/en/portal/petition/essential/basic-info)해야 합니다. 인증 시에는 [developer App](/ko/resources/fundamentals/developer-apps)이 속해 있는 [Project](/ko/resources/fundamentals/developer-apps)의 키와 토큰을 사용해야 합니다.

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

<div className="flex space-x-2">
  <Button href="/ko/x-api/lists/list-lookup/introduction">
    빠른 시작
  </Button>

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

  <Button href="https://app.getpostman.com/run-collection/9956214-784efcda-ed4c-4491-a4c0-a26470a67400">
    Postman에서 실행
  </Button>
</div>
