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

# Overview

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-follows-endpoints">
  ## X API의 follows 엔드포인트 비교
</div>

<div id="follows-lookup">
  ### 팔로우 조회
</div>

v2 팔로우 조회 엔드포인트는 기존 Standard v1.1 [followers/ids](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-followers-ids), v1.1 [followers/list](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-followers-list), v1.1 [friends/ids](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids), 그리고 v1.1 [friends/list](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-list) 엔드포인트를 대체합니다.

다음 표에서는 다양한 유형의 팔로우 조회 엔드포인트를 비교합니다:

|                                                                                                                                   |                                                                                                                                                                    |                                                                                                                                                                                                                                                             |
| :-------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **설명**                                                                                                                            | **Standard v1.1**                                                                                                                                                  | **X API v2**                                                                                                                                                                                                                                                |
| 지원 HTTP 메서드                                                                                                                       | `GET`                                                                                                                                                              | `GET`                                                                                                                                                                                                                                                       |
| 호스트 도메인                                                                                                                           | `https://api.x.com`                                                                                                                                                | `https://api.x.com`                                                                                                                                                                                                                                         |
| 엔드포인트 경로                                                                                                                          | /1.1/friends/ids.json<br /><br />/1.1/friends/list.json<br /><br />/1.1/followers/ids.json<br /><br />/1.1/followers/list.json                                     | /2/users/:id/following<br /><br />/2/users/:id/followers                                                                                                                                                                                                    |
| [인증](/ko/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                                                                                                                                                               |
| 기본 요청 [요청 한도](/ko/resources/fundamentals/rate-limits)                                                                             | 15분당 15회 요청(사용자 기준)<br /><br />15분당 15회 요청(App 기준)                                                                                                                 | 15분당 15회 요청(사용자 기준)<br /><br />15분당 15회 요청(App 기준)                                                                                                                                                                                                          |
| 응답당 최대 사용자 수                                                                                                                      | GET friends/id 및 GET followers/id는 한 페이지당 최대 5,000개의 사용자 ID를 반환합니다.<br /><br />  <br /><br />GET friends/list 및 GET followers/list는 한 페이지당 최대 200개의 사용자 객체를 반환합니다. | 한 페이지당 1,000개의 사용자 객체                                                                                                                                                                                                                                       |
| 페이지네이션                                                                                                                            | 토큰이 next\_cursor 필드로 반환되며, 이 값을 cursor 파라미터 값으로 전달하면 다음 페이지의 결과를 반환할 수 있습니다.                                                                                       | 토큰이 next\_token 필드로 반환되며, 이 값을 token 파라미터 값으로 전달하면 다음 페이지의 결과를 반환할 수 있습니다.<br /><br />또한 v2 페이로드에는 previous\_token 필드도 포함되며, 이 값을 pagination\_token 파라미터와 함께 전달하면 이전 페이지의 결과를 반환할 수 있습니다.                                                                   |
| JSON 형식                                                                                                                           | Standard v1.1 형식                                                                                                                                                   | [X API v2 형식](/ko/x-api/fundamentals/data-dictionary) (fields 및 expansions 요청 파라미터에 의해 결정되며, v1.1 형식과는 하위 호환되지 않음)<br /><br />Standard v1.1 형식에서 X API v2 형식으로 마이그레이션하는 방법에 대한 자세한 내용은 [데이터 형식 마이그레이션 가이드](/ko/x-api/migrate/data-format-migration)를 참조하세요. |
| 페이로드에서 어떤 [필드](/ko/x-api/fundamentals/data-dictionary)를 반환할지 선택 지원                                                                |                                                                                                                                                                    | ✔                                                                                                                                                                                                                                                           |
| 게시물 [annotations](/ko/x-api/fundamentals/post-annotations) 필드 지원                                                                  |                                                                                                                                                                    | ✔                                                                                                                                                                                                                                                           |
| 새로운 [메트릭](/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)의 자격 증명 사용 필수 |                                                                                                                                                                    | ✔                                                                                                                                                                                                                                                           |

<div id="manage-follows">
  #### 팔로우 관리
</div>

팔로우 관리를 위한 v2 엔드포인트는 기존 표준 v1.1 [POST friendships/create](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/post-friendships-create) 및 [POST friendships/destroy](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/post-friendships-destroy) 엔드포인트를 대체합니다.

다음 표에서는 표준 v1.1과 X API v2의 팔로우 생성 엔드포인트를 비교합니다.

<div id="follow-a-user">
  #### 사용자를 팔로우하기
</div>

| 설명                                                                                                                              | 표준 v1.1                                | X API v2                                                              |
| :------------------------------------------------------------------------------------------------------------------------------ | :------------------------------------- | :-------------------------------------------------------------------- |
| 지원되는 HTTP 메서드                                                                                                                   | POST                                   | POST                                                                  |
| 호스트 도메인                                                                                                                         | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                |
| 엔드포인트 경로                                                                                                                        | /1.1/friendships/create.json           | /2/users/:id/following                                                |
| [인증](/ko/resources/fundamentals/authentication)                                                                                 | OAuth 1.0a 사용자 컨텍스트                    | OAuth 1.0a 사용자 컨텍스트<br /><br />OAuth 2.0 Authorization Code with PKCE |
| 기본 [요청 한도](/ko/resources/fundamentals/rate-limits)                                                                              | 15분당 50회 요청                            | 15분당 50회 요청                                                           |
| 사용자당 하루 최대 작업 횟수                                                                                                                | 400                                    | 400                                                                   |
| App당 하루 최대 작업 횟수                                                                                                                | 1000                                   | 1000                                                                  |
| [Project](/ko/resources/fundamentals/developer-apps)와 연결된 [개발자 App](/ko/resources/fundamentals/developer-apps)의 자격 증명을 사용해야 합니다 |                                        | ✔️                                                                    |

<div id="unfollow-a-user">
  #### 사용자 언팔로우
</div>

다음 표는 Standard v1.1과 X API v2의 팔로우 삭제 엔드포인트를 비교한 것입니다:

| 설명                                                                                                                                | Standard v1.1                          | X API v2                                                              |
| :-------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :-------------------------------------------------------------------- |
| 지원되는 HTTP 메서드                                                                                                                     | POST                                   | DELETE                                                                |
| 호스트 도메인                                                                                                                           | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                |
| 엔드포인트 경로                                                                                                                          | /1.1/friendships/destroy.json          | /2/users/:source\_user\_id/following/:target\_user\_id                |
| [인증](/ko/resources/fundamentals/authentication)                                                                                   | OAuth 1.0a 사용자 컨텍스트                    | OAuth 1.0a 사용자 컨텍스트<br /><br />OAuth 2.0 Authorization Code with PKCE |
| 기본 요청 [요청 한도](/ko/resources/fundamentals/rate-limits)                                                                             | 15분당 15회 요청 (사용자 기준)                   | 15분당 50회 요청 (사용자 기준)                                                  |
| App당 최대 일일 작업 수                                                                                                                   | 제한 없음                                  | 500                                                                   |
| [Project](/ko/resources/fundamentals/developer-apps)와 연결된 [developer App](/ko/resources/fundamentals/developer-apps)의 자격 증명 필요 여부 |                                        | ✔️                                                                    |

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

\| [팔로우 조회: Standard v1.1에서 X API v2로](/ko/x-api/users/follows/migrate/standard-to-twitter-api-v2)

[팔로우 관리: Standard v1.1과 X API v2 비교](/ko/x-api/users/follows#manage-follows-standard-v1-1-compared-to-x-api-v2)

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