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

# Manage Lists の移行概要

> List の作成、更新、削除の連携を standard v1.1 の lists エンドポイントから、パラメータと上限をマッピングした X API v2 の manage Lists エンドポイントへ移行します。

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

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

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

**List を作成**

| Description                                             | Standard v1.1                          | X API v2                               |
| :------------------------------------------------------ | :------------------------------------- | :------------------------------------- |
| サポートされる HTTP メソッド                                       | POST                                   | POST                                   |
| ホストドメイン                                                 | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com) |
| エンドポイントパス                                               | /1.1/lists/create.json                 | /2/lists                               |
| [認証](/resources/fundamentals/authentication)            | OAuth 1.0a User Context                | OAuth 1.0a User Context                |
| デフォルトのリクエスト[レート制限](/resources/fundamentals/rate-limits) | なし                                     | 15 分あたり 300 リクエスト (ユーザーあたり)            |

**List を削除**

| Description                                             | Standard v1.1                          | X API v2                               |
| :------------------------------------------------------ | :------------------------------------- | :------------------------------------- |
| サポートされる HTTP メソッド                                       | POST                                   | DELETE                                 |
| ホストドメイン                                                 | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com) |
| エンドポイントパス                                               | /1.1/lists/destroy.json                | /2/lists/:id                           |
| [認証](/resources/fundamentals/authentication)            | OAuth 1.0a User Context                | OAuth 1.0a User Context                |
| デフォルトのリクエスト[レート制限](/resources/fundamentals/rate-limits) | なし                                     | 15 分あたり 300 リクエスト (ユーザーあたり)            |

**List を更新**

| Description                                             | Standard v1.1                          | X API v2                               |
| :------------------------------------------------------ | :------------------------------------- | :------------------------------------- |
| サポートされる HTTP メソッド                                       | POST                                   | PUT                                    |
| ホストドメイン                                                 | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com) |
| エンドポイントパス                                               | /1.1/lists/update.json                 | /2/lists/:id                           |
| [認証](/resources/fundamentals/authentication)            | OAuth 1.0a User Context                | OAuth 1.0a User Context                |
| デフォルトのリクエスト[レート制限](/resources/fundamentals/rate-limits) | なし                                     | 15 分あたり 300 リクエスト (ユーザーあたり)            |

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/manage-lists/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>
