> ## 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>;
};

* 1% サンプルストリーム。
* 10% サンプルストリーム。一般的に「Decahose」と呼ばれます。

これらは大量のデータを配信するため、「ボリュームストリーム」と呼ばれます。1% ストリームであっても、1 秒あたりに数十件の投稿を出力することができます。これらのストリームを使用すると、トレンドの特定と追跡、全体的なセンチメントのモニタリング、世界的なイベントの監視など、さまざまなことが可能です。 

これらのストリーミングエンドポイントは、永続的な HTTP GET 接続を通じて [Post オブジェクト](/ja/x-api/fundamentals/data-dictionary#tweet) を配信し、[OAuth 2.0 App-Only](/ja/resources/fundamentals/authentication#oauth-2-0) 認証を使用します。Essential アクセスでは、一度に 1 つの接続のみ保持できます。すべてのアクセスレベルで、接続リクエストは 15 分ごとに最大 50 回まで行うことができます。

これらのボリュームストリームエンドポイントは、編集済みの投稿をサポートしています。これらのエンドポイントは、編集履歴を含む編集済みの投稿を配信し、編集履歴には投稿 ID の配列が含まれます。編集履歴のない投稿の場合、この配列には 1 つの ID が格納されます。編集された投稿の場合、この配列には複数の ID が含まれ、編集の順序を反映した昇順で並んでおり、配列の最後の位置に最新バージョンが配置されます。投稿の編集の仕組みについて詳しくは、[Post edits の基本](/ja/x-api/fundamentals/edit-posts) ページをご覧ください。 

*これらの API を使用するには、まず当社のエンタープライズセールスチームを通じてアカウント設定を行う必要があります。*

<Note>
  **アカウント設定**

  これらのエンドポイントにアクセスするには、次のものが必要です。

  * 承認済みの [開発者アカウント](https://developer.x.com/en/portal/petition/essential/basic-info)。
  * [Project](/ja/resources/fundamentals/developer-apps) 内にある [開発者 App](/ja/resources/fundamentals/developer-apps) のキーとトークンを使用して認証すること。 

  X API v2 エンドポイントへのアクセス取得について詳しくは、[利用開始ガイド](/ja/x-api/getting-started/getting-access)を参照してください。
</Note>

<div class="flex space-x-2">
  <Button href="/ja/x-api/posts/volume-streams/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>

  <Button href="https://developer.x.com/apitools/api?endpoint=/2/tweets/sample/stream&method=get">
    API Explorer で試す
  </Button>
</div>
