> ## 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."로 불립니다.

이러한 스트림은 모두 대량의 데이터를 전달하기 때문에 "volume streams"라고 부릅니다. 1% 스트림만으로도 매초 수십 개의 포스트를 전송할 수 있습니다. 이러한 스트림을 사용하면 트렌드를 식별·추적하고, 전반적인 감성을 모니터링하며, 전 세계적 이벤트를 모니터링하는 등 다양한 작업을 수행할 수 있습니다. 

이 스트리밍 엔드포인트는 지속적인 HTTP GET 연결을 통해 [Post objects](/ko/x-api/fundamentals/data-dictionary#tweet)를 전달하며 [OAuth 2.0 App-Only](/ko/resources/fundamentals/authentication#oauth-2-0) 인증을 사용합니다. Essential 액세스의 경우 한 번에 하나의 연결만 가질 수 있습니다. 모든 수준의 액세스에서 15분마다 최대 50번까지 연결 요청을 할 수 있습니다.

이 volume stream 엔드포인트는 편집된 포스트를 지원합니다. 이 엔드포인트는 포스트의 편집 내역과 함께, 포스트 ID 배열을 포함하여 편집된 포스트를 전달합니다. 편집 내역이 없는 포스트의 경우 이 배열에는 단일 ID만 포함됩니다. 편집된 포스트의 경우 이 배열에는 여러 개의 ID가 포함되며, 편집 순서를 반영하여 오름차순으로 정렬되고, 배열의 마지막 위치에 가장 최신 버전이 있습니다. 포스트 편집이 어떻게 동작하는지 자세히 알아보려면 [Post edits fundamentals](/ko/x-api/fundamentals/edit-posts) 페이지를 참조하세요. 

*이 API를 사용하려면 먼저 엔터프라이즈 영업 팀을 통해 계정을 설정해야 합니다.*

<Note>
  **계정 설정**

  이 엔드포인트에 액세스하려면 다음이 필요합니다:

  * 승인된 [developer account](https://developer.x.com/en/portal/petition/essential/basic-info)
  * [Project](/ko/resources/fundamentals/developer-apps) 내에 위치한 [developer App](/ko/resources/fundamentals/developer-apps)의 키와 토큰을 사용한 인증 

  X API v2 엔드포인트에 액세스하는 방법에 대해서는 [getting started guide](/ko/x-api/getting-started/getting-access)를 참조하세요.
</Note>

<div class="flex space-x-2">
  <Button href="/ko/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>
