> ## 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-users-lookup-endpoints">
  ## X API의 사용자 조회 엔드포인트 비교
</div>

v2 사용자 조회 엔드포인트는 기존 표준 v1.1 [GET users/lookup](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-users-lookup.html) 및 [GET users/show](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-users-show.html) 엔드포인트를 대체합니다. 코드나 App 또는 도구에서 이러한 버전의 사용자 조회 엔드포인트를 사용하고 있고 새 X API v2 엔드포인트로 마이그레이션하는 것을 고려하고 있다면, 이 가이드 모음이 여러분을 위한 것입니다. 
 

다음 표는 다양한 유형의 사용자 조회 엔드포인트를 비교합니다.
 

|                                                                                                                                   |                                                                                                 |                                                                                                                                                                                                                                                        |
| :-------------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **설명**                                                                                                                            | **표준 v1.1**                                                                                     | **X API v2**                                                                                                                                                                                                                                           |
| 지원되는 HTTP 메서드                                                                                                                     | `GET`                                                                                           | `GET`                                                                                                                                                                                                                                                  |
| 호스트 도메인                                                                                                                           | `https://api.x.com`                                                                             | `https://api.x.com`                                                                                                                                                                                                                                    |
| 엔드포인트 경로                                                                                                                          | `/1.1/users/show.json` `/1.1/users/lookup.json`                                                 | `/2/users`<br /><br />`/2/users/:id`<br /><br />`/2/users/by`<br /><br />`/2/users/by/:username`                                                                                                                                                       |
| [인증](/ko/resources/fundamentals/authentication)                                                                                   | OAuth 1.0a 사용자 컨텍스트                                                                             | OAuth 1.0a 사용자 컨텍스트<br /><br />App only<br /><br />OAuth 2.0 Authorization Code with PKCE                                                                                                                                                              |
| 기본 요청 [요청 한도](/ko/resources/fundamentals/rate-limits)                                                                             | 15분당 900회 요청 (사용자당)<br /><br />/show - 15분당 900회 요청 (App당)  <br />/lookup - 15분당 300회 요청 (App당) | 15분당 900회 요청 (사용자당)<br /><br />15분당 300회 요청 (App당)                                                                                                                                                                                                     |
| 응답당 최대 사용자 수                                                                                                                      | /show -  1명<br /><br />/lookup - 100명                                                           | 100명                                                                                                                                                                                                                                                   |
| JSON 응답 객체 형식                                                                                                                     | 표준 v1.1 형식                                                                                      | [X API v2 형식](/ko/x-api/fundamentals/data-dictionary) (요청 매개변수인 fields 및 expansions에 의해 결정되며, v1.1 형식과는 역호환되지 않음)<br /><br />표준 v1.1 형식에서 X API v2 형식으로 마이그레이션하는 방법에 대해 자세히 알아보려면 [데이터 형식 마이그레이션 가이드](/ko/x-api/migrate/data-format-migration)를 방문하세요. |
| 페이로드에 포함할 [fields](/ko/x-api/fundamentals/data-dictionary)를 선택하는 기능 지원                                                            |                                                                                                 | ✔                                                                                                                                                                                                                                                      |
| [annotations](/ko/x-api/fundamentals/post-annotations) 필드 지원 (고정된 게시물에 대해)                                                        |                                                                                                 | ✔                                                                                                                                                                                                                                                      |
| 새로운 [metrics](/ko/x-api/fundamentals/metrics) 필드 요청 지원 (고정된 게시물에 대해)                                                              |                                                                                                 | ✔                                                                                                                                                                                                                                                      |
| [conversation\_id](/ko/x-api/fundamentals/conversation-id) 필드 지원 (고정된 게시물에 대해)                                                    |                                                                                                 | ✔                                                                                                                                                                                                                                                      |
| [project](/ko/resources/fundamentals/developer-apps)와 연결된 [developer App](/ko/resources/fundamentals/developer-apps)의 자격 증명 사용 필요 |                                                                                                 | ✔                                                                                                                                                                                                                                                      |

**기타 마이그레이션 리소스**

[사용자 조회: 표준 v1.1에서 X API v2로](/ko/x-api/users/lookup/migrate/standard-to-twitter-api-v2)

[X API 마이그레이션 허브](/ko/x-api/migrate/overview)

[이 엔드포인트에 대한 샘플 코드를 확인해 보세요](https://github.com/xdevplatform/Twitter-API-v2-sample-code "이 엔드포인트에 대한 샘플 코드를 확인해 보세요")
