> ## Documentation Index
> Fetch the complete documentation index at: https://www.helius.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# signatureUnsubscribe

> 서명 확인 알림 구독 취소.

## Endpoints

Websockets은 메인넷과 개발넷에서 다음 URL로 사용할 수 있습니다:

* **Mainnet** `wss://mainnet.helius-rpc.com/?api-key=<api-key>`
* **Devnet** `wss://devnet.helius-rpc.com/?api-key=<api-key>`

<Note>Websockets는 10분 간의 비활성 타이머가 있습니다; 웹소켓 연결을 유지하려면 상태 확인을 구현하고 매 분마다 핑을 보내는 것을 적극 권장합니다.</Note>

## Authorizations

<ParamField query="api-key" type="string" required>
  Helius API 키를 입력하세요. 대시보드에서 무료로 받을 수 있습니다. [dashboard](https://dashboard.helius.dev/api-keys).
</ParamField>

## Body

<ParamField body="params" type="array" required>
  <Expandable title="properties" defaultOpen>
    <ParamField body="subscriptionId" type="integer" required>
      취소할 구독 ID.
    </ParamField>
  </Expandable>
</ParamField>

## Response

<ResponseField name="result" type="boolean">
  구독 취소 성공 메시지.
</ResponseField>

<RequestExample>
  ```json Request theme={"system"}
  {
    "jsonrpc": "2.0",
    "id": 1,
    "method": "signatureUnsubscribe",
    "params": [
      0
    ]
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={"system"}
  {
    "jsonrpc": "2.0",
    "result": true,
    "id": 1
  }
  ```
</ResponseExample>
