> ## 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 へ移行します。

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**                                                                                                                                                                                                                        |
| ホストドメイン                                                                                                                       | **[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                                                                                                                                                      |
| デフォルトのリクエスト[レート制限](/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                                                                      |
| ホストドメイン                                                                                                                       | [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 |
| デフォルトのリクエスト[レート制限](/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                                                                    |
| ホストドメイン                                                                                                                       | [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 |
| デフォルトのリクエスト[レート制限](/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)
