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

# signatureUnsubscribe on Solana

> Call signatureUnsubscribe on Solana via GoldRush JSON-RPC. Cancels a signature subscription. Endpoint, parameters, return values, and code examples.

<Card title="0.01 credits per call" icon="coins" />

`signatureUnsubscribe` on **Solana**: Cancels a signature subscription.

## Endpoint

```
wss://rpc.goldrushdata.com/v1/solana-mainnet
```

`signatureUnsubscribe` is a **WebSocket** subscription method.

Authenticate with `Authorization: Bearer <GOLDRUSH_API_KEY>`. See [authentication](/goldrush-json-rpc/authentication).

## Parameters

| Name             | Type     | Required | Description                                       | Example |
| ---------------- | -------- | -------- | ------------------------------------------------- | ------- |
| `subscriptionId` | `number` | yes      | Subscription id returned by `signatureSubscribe`. | `24006` |

## Returns

`boolean`: `true` if the subscription was successfully cancelled.

```json theme={null}
true
```

## Examples

<CodeGroup>
  ```bash wscat theme={null}
  # Connect (header auth works from Node/CLI clients):
  wscat -c "wss://rpc.goldrushdata.com/v1/solana-mainnet" \
    -H "Authorization: Bearer $GOLDRUSH_API_KEY"

  # Once connected, send:
  {"jsonrpc":"2.0","id":1,"method":"signatureUnsubscribe","params":[24006]}
  ```

  ```typescript @solana/kit theme={null}
  import { createSolanaRpcSubscriptions } from "@solana/kit";

  // With @solana/kit you don't call signatureUnsubscribe directly. Abort the
  // subscription's AbortController and the client sends the unsubscribe
  // frame for you:
  const abortController = new AbortController();
  // ... later:
  abortController.abort();
  ```
</CodeGroup>

## Errors

Standard JSON-RPC errors: `-32600` invalid request, `-32601` method not found, `-32602` invalid params.

## Related Subscriptions methods on Solana

* [`accountSubscribe` on Solana](/api-reference/json-rpc/solana/accountsubscribe)
* [`accountUnsubscribe` on Solana](/api-reference/json-rpc/solana/accountunsubscribe)
* [`logsSubscribe` on Solana](/api-reference/json-rpc/solana/logssubscribe)
* [`logsUnsubscribe` on Solana](/api-reference/json-rpc/solana/logsunsubscribe)
* [`programSubscribe` on Solana](/api-reference/json-rpc/solana/programsubscribe)
