> ## 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 Posts エンドポイントの移行概要

> standard v1.1 の lists/statuses と X API v2 の List Posts エンドポイントを、パラメータ、認証、ページネーションの違いを含めて比較します。

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

v2 の List Posts lookup エンドポイントは、standard 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) を置き換えます。このバージョンのエンドポイントを利用しているコード、アプリ、ツールをお持ちで、新しい 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/statuses.json`                                             | `/2/lists/:id/tweets`                                                                                           |
| [認証](/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 分あたり 900 リクエスト<br /><br />App only で 15 分あたり 900 リクエスト | OAuth 1.0a で 15 分あたり 900 リクエスト<br /><br />OAuth 2.0 で 15 分あたり 900 リクエスト<br /><br />App only で 15 分あたり 900 リクエスト |

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-tweets/quickstart">
    クイックスタート
  </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>
