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

<div id="mutes-lookup">
  #### 음소거 조회
</div>

v2 음소거 조회 엔드포인트는 기존 [v1.1 GET mutes/users/ids](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/get-mutes-users-ids) 및 [GET mutes/users/list](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/get-mutes-users-list) 엔드포인트를 대체합니다.

아래 표는 표준 v1.1과 X API v2 음소거 엔드포인트를 비교합니다:
 

| 설명                                                                                                                                | 표준 v1.1                                                                     | X API v2                                                                                                                                                                                                                                              |
| :-------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 지원되는 HTTP 메서드                                                                                                                     | ******GET******                                                             | ******GET******                                                                                                                                                                                                                                       |
| 호스트 도메인                                                                                                                           | ******[https://api.x.com](https://api.x.com)******                          | ******[https://api.x.com](https://api.x.com)******                                                                                                                                                                                                    |
| 엔드포인트 경로                                                                                                                          | ******/1.1/mutes/users/ids.json******<br /><br />/1.1/mutes/users/list.json | ******/2/users/:id/muting******                                                                                                                                                                                                                       |
| [인증](/ko/resources/fundamentals/authentication)                                                                                   | OAuth 1.0a User Context                                                     | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE                                                                                                                                                                             |
| 기본 요청 [요청 한도](/ko/resources/fundamentals/rate-limits)                                                                             | 15분당 15회 요청(사용자 기준)                                                         | 15분당 15회 요청(사용자 기준)                                                                                                                                                                                                                                   |
| 데이터 형식                                                                                                                            | 표준 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)를 참고하세요. |
| [Project](/ko/resources/fundamentals/developer-apps)와 연결된 [developer App](/ko/resources/fundamentals/developer-apps)의 자격 증명 사용 필요 |                                                                             | ✔️                                                                                                                                                                                                                                                    |

<div id="manage-mutes">
  #### 뮤트 관리
</div>

v2 뮤트 관리 엔드포인트는 표준 v1.1 [POST mutes/users/create](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/post-mutes-users-create) 및 [POST mutes/users/destroy](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/post-mutes-users-destroy) 엔드포인트를 대체합니다.

다음 표에서는 표준 v1.1 엔드포인트와 X API v2 뮤트 엔드포인트를 비교합니다:

**사용자 뮤트하기**

| Description                                                                                                                                                                  | Standard v1.1                          | X API v2                                                                  |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :------------------------------------------------------------------------ |
| HTTP methods supported                                                                                                                                                       | POST                                   | POST                                                                      |
| Host domain                                                                                                                                                                  | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                    |
| Endpoint path                                                                                                                                                                | /1.1/mutes/users/create.json           | /2/users/:id/muting                                                       |
| [Authentication](/ko/resources/fundamentals/authentication)                                                                                                                  | OAuth 1.0a User Context                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE |
| Default request [rate limits](/ko/resources/fundamentals/rate-limits)                                                                                                        | 15분당 50회 요청                            | 15분당 50회 요청                                                               |
| Requires use of credentials from a [developer App](/ko/resources/fundamentals/developer-apps) that is associated with a [Project](/ko/resources/fundamentals/developer-apps) |                                        | ✔️                                                                        |

**사용자 뮤트 해제하기**

다음 표에서는 표준 v1.1 엔드포인트와 X API v2 뮤트 해제 엔드포인트를 비교합니다:

| Description                                                                                                                                                                  | Standard v1.1                          | X API v2                                                                  |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :------------------------------------------------------------------------ |
| HTTP methods supported                                                                                                                                                       | POST                                   | DELETE                                                                    |
| Host domain                                                                                                                                                                  | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                    |
| Endpoint path                                                                                                                                                                | /1.1/mutes/users/destroy.json          | /2/users/:source\_user\_id/muting/:target\_user\_id                       |
| [Authentication](/ko/resources/fundamentals/authentication)                                                                                                                  | OAuth 1.0a User Context                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE |
| Default request [rate limits](/ko/resources/fundamentals/rate-limits)                                                                                                        | 15분당 50회 요청                            | 15분당 50회 요청                                                               |
| Requires use of credentials from a [developer App](/ko/resources/fundamentals/developer-apps) that is associated with a [Project](/ko/resources/fundamentals/developer-apps) |                                        | ✔️                                                                        |

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

[뮤트 관리: Standard v1.1에서 X API v2로](/ko/x-api/users/mutes#manage-mutes-standard-v1-1-compared-to-x-api-v2)

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