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

# blockUnsubscribe

> Unsubscribe from block notifications.

Unsubscribe from block notifications.

## On ThorNode

The upstream node does not enable block subscriptions; subscribing returns `-32601 Method not found`. Use [Yellowstone gRPC](/api-reference/yellowstone/subscribe) or poll `getBlock`. There is nothing to unsubscribe.

## Parameters

<ParamField body="params" type="array" required>
  <Expandable title="properties" defaultOpen>
    <ParamField body="subscriptionId" type="integer" required>
      Subscription id to cancel.
    </ParamField>
  </Expandable>
</ParamField>

## Response

<ResponseField name="result" type="boolean">
  Unsubscribe success message.
</ResponseField>

<RequestExample>
  ```json Request theme={null}
  {
    "jsonrpc": "2.0",
    "id": 2,
    "method": "blockUnsubscribe",
    "params": [
      0
    ]
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Response (method not enabled) theme={null}
  {
    "jsonrpc": "2.0",
    "error": {
      "code": -32601,
      "message": "Method not found"
    },
    "id": 2
  }
  ```
</ResponseExample>
