> ## 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-posts-lookup-endpoints">
  ## X API のリスト投稿ルックアップエンドポイントの比較
</div>

v2 のリスト投稿ルックアップエンドポイントは、標準 v1.1 の [GET lists/statuses](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-statuses) を置き換える予定です。現在このバージョンのエンドポイントを使用しているコード、App、ツールがあり、新しい 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/statuses.json`                                              | `/2/lists/:id/tweets`                                                                                              |
| [Authentication](/ja/resources/fundamentals/authentication) | OAuth 1.0a ユーザーコンテキスト<br /><br />App のみ                                 | OAuth 1.0a ユーザーコンテキスト<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App のみ                          |
| デフォルトのリクエスト[レート制限](/ja/resources/fundamentals/rate-limits)  | OAuth 1.0a の場合 15 分あたり 900 リクエスト<br /><br />App のみの場合 15 分あたり 900 リクエスト | OAuth 1.0a の場合 15 分あたり 900 リクエスト<br /><br />OAuth 2.0 の場合 15 分あたり 900 リクエスト<br /><br />App のみの場合 15 分あたり 900 リクエスト |

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

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

<div className="flex space-x-2">
  <Button href="/ja/x-api/lists/list-tweets/quickstart">
    クイックスタート
  </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>
