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

# 概要

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-full group-hover:opacity-[0.9] font-medium">
        <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>;
};

<div id="comparing-x-apis-list-lookup-endpoints">
  ## X API のリスト参照エンドポイントの比較
</div>

v2 のリスト参照エンドポイントグループは、標準の 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) エンドポイントを置き換える予定です。これらのリスト参照エンドポイントのいずれかのバージョンを使用しているコード、アプリ、ツールがあり、新しい X API v2 エンドポイントへの移行を検討している場合は、この一連のガイドが役に立ちます。

次の表は、標準の v1.1 と X API v2 のリストエンドポイントを比較したものです。

**ID によるリスト参照**

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

**ユーザー所有リストの参照**

|                                                             |                                                                   |                                                                                                           |
| :---------------------------------------------------------- | :---------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------- |
| 説明                                                          | 標準 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`                                                                                |
| [Authentication](/ja/resources/fundamentals/authentication) | OAuth 1.0a User Context<br /><br />App のみ                         | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App のみ               |
| デフォルトのリクエスト[レート制限](/ja/resources/fundamentals/rate-limits)  | OAuth 1.0a で 15 分あたり 15 リクエスト<br /><br />App のみで 15 分あたり 15 リクエスト | OAuth 1.0a で 15 分あたり 15 リクエスト<br /><br />OAuth 2.0 で 15 分あたり 15 リクエスト<br /><br />App のみで 15 分あたり 15 リクエスト |

X API v2 エンドポイントにアクセスするには、[開発者アカウントに登録](https://developer.x.com/en/portal/petition/essential/basic-info)する必要があります。認証を行う際は、[developer App](/ja/resources/fundamentals/developer-apps) 内にあり、[Project](/ja/resources/fundamentals/developer-apps) に属している App のキーとトークンを使用する必要があります。 

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

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

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

  <Button href="https://app.getpostman.com/run-collection/9956214-784efcda-ed4c-4491-a4c0-a26470a67400">
    Postman で実行
  </Button>
</div>
