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

# Mutes 엔드포인트 마이그레이션 개요

> mutes lookup 및 manage mutes 통합을 Standard v1.1에서 X API v2로 엔드포인트, 매개변수 및 rate limit 매핑과 함께 마이그레이션합니다.

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

#### Mutes lookup

v2 mutes lookup 엔드포인트는 standard [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) 엔드포인트를 대체합니다.

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

| Description                                                                                                                 | Standard v1.1                                                       | X API v2                                                                                                                                                                                                                                              |
| :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------ | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 지원되는 HTTP 메서드                                                                                                               | **GET**                                                             | **GET**                                                                                                                                                                                                                                               |
| Host 도메인                                                                                                                    | **[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**                                                                                                                                                                                                                               |
| [인증](/resources/fundamentals/authentication)                                                                                | OAuth 1.0a User Context                                             | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE                                                                                                                                                                             |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits)                                                                     | 15분당 15회 요청 (사용자당)                                                  | 15분당 15회 요청 (사용자당)                                                                                                                                                                                                                                    |
| 데이터 형식                                                                                                                      | Standard v1.1 형식                                                    | [X API v2 형식](/x-api/fundamentals/data-dictionary) (fields 및 expansions 요청 매개변수에 의해 결정되며, v1.1 형식과 하위 호환되지 않음)<br /><br />Standard v1.1 형식에서 X API v2 형식으로 마이그레이션하는 방법에 대한 자세한 내용은 [데이터 형식 마이그레이션 가이드](/x-api/migrate/data-format-migration)를 참조하십시오. |
| [Project](/resources/fundamentals/developer-apps)와 연결된 [developer App](/resources/fundamentals/developer-apps)의 자격 증명 사용 필요 |                                                                     | ✔️                                                                                                                                                                                                                                                    |

#### Manage mutes

v2 manage mutes 엔드포인트는 standard 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) 엔드포인트를 대체합니다.

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

**사용자 뮤트**

| Description                                                                                                                 | Standard v1.1                          | X API v2                                                                  |
| :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :------------------------------------------------------------------------ |
| 지원되는 HTTP 메서드                                                                                                               | POST                                   | POST                                                                      |
| Host 도메인                                                                                                                    | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                    |
| 엔드포인트 경로                                                                                                                    | /1.1/mutes/users/create.json           | /2/users/:id/muting                                                       |
| [인증](/resources/fundamentals/authentication)                                                                                | OAuth 1.0a User Context                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits)                                                                     | 15분당 50회 요청                            | 15분당 50회 요청                                                               |
| [Project](/resources/fundamentals/developer-apps)와 연결된 [developer App](/resources/fundamentals/developer-apps)의 자격 증명 사용 필요 |                                        | ✔️                                                                        |

**사용자 뮤트 해제**

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

| Description                                                                                                                 | Standard v1.1                          | X API v2                                                                  |
| :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :------------------------------------------------------------------------ |
| 지원되는 HTTP 메서드                                                                                                               | POST                                   | DELETE                                                                    |
| Host 도메인                                                                                                                    | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                    |
| 엔드포인트 경로                                                                                                                    | /1.1/mutes/users/destroy.json          | /2/users/:source\_user\_id/muting/:target\_user\_id                       |
| [인증](/resources/fundamentals/authentication)                                                                                | OAuth 1.0a User Context                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits)                                                                     | 15분당 50회 요청                            | 15분당 50회 요청                                                               |
| [Project](/resources/fundamentals/developer-apps)와 연결된 [developer App](/resources/fundamentals/developer-apps)의 자격 증명 사용 필요 |                                        | ✔️                                                                        |

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

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

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