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

# List lookup の移行概要

> standard v1.1 の lists/show および lists/list と、X API v2 の List lookup エンドポイントを、新しいフィールド、expansions、認証オプションを含めて比較します。

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 の List lookup エンドポイントの比較

v2 の List lookup エンドポイント群は、standard v1.1 の [GET lists/show](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-show) および [GET lists/ownership](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-ownerships) エンドポイントを置き換えます。これらのバージョンの List lookup エンドポイントを利用しているコード、アプリ、ツールをお持ちで、新しい X API v2 エンドポイントへの移行を検討している場合は、本ガイド群が役立ちます。

以下の表は standard v1.1 と X API v2 の List エンドポイントを比較したものです:

**List Lookup by ID**

|                                                         |                                                                                                              |                                                                                                              |
| :------------------------------------------------------ | :----------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------- |
| Description                                             | Standard v1.1                                                                                                | X API v2                                                                                                     |
| サポートされる HTTP メソッド                                       | `GET`                                                                                                        | `GET`                                                                                                        |
| ホストドメイン                                                 | `https://api.x.com`                                                                                          | `https://api.x.com`                                                                                          |
| エンドポイントパス                                               | `/1.1/lists/show.json`                                                                                       | `/2/lists/:id`                                                                                               |
| [認証](/resources/fundamentals/authentication)            | OAuth 1.0a User Context<br /><br />App only                                                                  | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only                |
| デフォルトのリクエスト[レート制限](/resources/fundamentals/rate-limits) | OAuth 1.0a で 15 分あたり 75 リクエスト<br /><br />OAuth 2.0 で 15 分あたり 75 リクエスト<br /><br />App only で 15 分あたり 75 リクエスト | OAuth 1.0a で 15 分あたり 75 リクエスト<br /><br />OAuth 2.0 で 15 分あたり 75 リクエスト<br /><br />App only で 15 分あたり 75 リクエスト |

**User 所有の List lookup**

|                                                         |                                                                      |                                                                                                              |
| :------------------------------------------------------ | :------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------- |
| Description                                             | Standard v1.1                                                        | X API v2                                                                                                     |
| サポートされる HTTP メソッド                                       | `GET`                                                                | `GET`                                                                                                        |
| ホストドメイン                                                 | `https://api.x.com`                                                  | `https://api.x.com`                                                                                          |
| エンドポイントパス                                               | `/1.1/lists/ownerships.json`                                         | `/2/users/:id/owned_lists`                                                                                   |
| [認証](/resources/fundamentals/authentication)            | OAuth 1.0a User Context<br /><br />App only                          | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only                |
| デフォルトのリクエスト[レート制限](/resources/fundamentals/rate-limits) | OAuth 1.0a で 15 分あたり 15 リクエスト<br /><br />App only で 15 分あたり 15 リクエスト | OAuth 1.0a で 15 分あたり 15 リクエスト<br /><br />OAuth 2.0 で 15 分あたり 15 リクエスト<br /><br />App only で 15 分あたり 15 リクエスト |

X API v2 エンドポイントにアクセスするには、[developer account に登録](https://developer.x.com/en/portal/petition/essential/basic-info)する必要があります。認証時には、[Project](/resources/fundamentals/developer-apps) に配置された [developer App](/resources/fundamentals/developer-apps) のキーとトークンを使用する必要があります。

X API v2 エンドポイントへのアクセスの取得方法については、[getting started](/x-api/getting-started/getting-access) ページをご確認ください。

<div className="flex space-x-2">
  <Button href="/x-api/lists/list-lookup/introduction">
    クイックスタート
  </Button>

  <Button href="https://github.com/xdevplatform/Twitter-API-v2-sample-code">
    サンプルコード
  </Button>

  <Button href="https://www.postman.com/xapidevelopers/x-api-public-workspace/collection/34902927-2efc5689-99c6-4ab6-8091-996f35c2fd80">
    Postman で実行
  </Button>
</div>
