> ## Documentation Index
> Fetch the complete documentation index at: https://x-preview-mintlify-5e62557c.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Mutes lookup

> これまで standard v1.1 の GET mutes/users/ids および GET mutes/users/list を利用してきた方に向けたガイドです。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>;
};

### Mutes lookup: Standard v1.1 と X API v2 の比較

これまで 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 の mutes lookup エンドポイントの類似点と相違点を理解するのに役立つことを目的としたガイドです。

* **類似点**
  * 認証
* **相違点**
  * エンドポイント URL

  * リクエストあたりのユーザー数上限

  * App と Project の要件

  * レスポンスデータ形式

  * リクエストパラメータ

#### 類似点

**認証**

standard v1.1 と X API v2 の mutes lookup エンドポイントはいずれも [OAuth 1.0a User Context](/resources/fundamentals/authentication#oauth-1-0a-2) を使用します。したがって、以前 standard v1.1 の mutes lookup エンドポイントのいずれかを利用していた場合、X API v2 版へ移行しても同じ認証方式を継続して利用できます。

#### 相違点

**エンドポイント URL**

* Standard v1.1 エンドポイント:
  * GET [https://api.x.com/1.1/mutes/users/ids.json](https://api.x.com/1.1/mutes/users/ids.json)
    (指定したユーザーがミュートしている user ID のリスト)
  * GET [https://api.x.com/1.1/mutes/users/lists.json](https://api.x.com/1.1/mutes/users/lists.json)
    (指定したユーザーがミュートしているユーザーのリスト)
* X API v2 エンドポイント:
  * GET [https://api.x.com/2/users/:id/muting](https://api.x.com/2/users/:id/muting)
    (指定した user ID がミュートしているユーザーのリスト)

**リクエストあたりのユーザー数上限**

standard v1.1 エンドポイントでは、1 リクエストあたり最大 5000 ユーザーを返せます。新しい v2 エンドポイントでは、1 リクエストあたり最大 1000 ユーザーを返せます。1000 ユーザーをすべて返すには、
