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

# List members lookup

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

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

これまで standard v1.1 の [GET lists/members](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-members) および [GET lists/memberships](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-memberships) エンドポイントを利用してきた方向けに、standard v1.1 と X API v2 の List member エンドポイントの類似点と相違点を理解するのに役立つことを目的としたガイドです。

* **類似点**
  * 認証方式
* **相違点**
  * エンドポイント URL
  * レート制限
  * App と Project の要件
  * リクエストあたりのデータオブジェクト数上限
  * レスポンスデータ形式
  * リクエストパラメータ

#### 類似点

**認証**

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

利用している認証ライブラリ/パッケージによりますが、App only 認証はおそらく最も簡単に開始できる方法で、シンプルなリクエストヘッダーで設定できます。App only アクセストークンの生成方法については、[App only ガイド](/resources/fundamentals/authentication#bearer-token-also-known-as-app-only)をご確認ください。

#### 相違点

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

* Standard v1.1 エンドポイント:
  * GET [https://api.x.com/1.1/lists/members.json](https://api.x.com/1.1/lists/members.json)
    (指定した List のメンバーを Lookup)
  * GET [https://api.x.com/1.1/lists/mem](https://api.x.com/1.1/lists/mem)
