> ## 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.

# LaserStream WebSocket Methods

> Complete reference for LaserStream WebSocket subscription methods. Standard Solana subscriptions plus Helius extensions for real-time account, program, signature, slot, and log monitoring.

This is a comprehensive list of all WebSocket methods available through [LaserStream WebSocket](/rpc/websocket) — the standard Solana subscription methods plus Helius-specific extensions.

For detailed information on each method including parameters, results, and examples, please refer to the individual API reference pages.

<Tip>
  LaserStream WebSocket serves all Solana subscription methods on the same backend that powers [LaserStream gRPC](/laserstream), delivering up to 200 ms faster responses than the standard Agave RPC-based WebSocket implementation.
</Tip>

## Supported WebSockets Methods

<CardGroup cols={2}>
  <Card title="accountSubscribe" href="/api-reference/rpc/websocket/accountsubscribe">
    Subscribe to an account to receive notifications when the lamports or data for a given account public key changes
  </Card>

  <Card title="accountUnsubscribe" href="/api-reference/rpc/websocket/accountunsubscribe">
    Unsubscribe from account change notifications
  </Card>

  <Card title="logsSubscribe" href="/api-reference/rpc/websocket/logssubscribe">
    Subscribe to transaction logging
  </Card>

  <Card title="logsUnsubscribe" href="/api-reference/rpc/websocket/logsunsubscribe">
    Unsubscribe from transaction logging
  </Card>

  <Card title="programSubscribe" href="/api-reference/rpc/websocket/programsubscribe">
    Subscribe to a program to receive notifications when the lamports or data for accounts owned by the program changes
  </Card>

  <Card title="programUnsubscribe" href="/api-reference/rpc/websocket/programunsubscribe">
    Unsubscribe from program notifications
  </Card>

  <Card title="rootSubscribe" href="/api-reference/rpc/websocket/rootsubscribe">
    Subscribe to receive notification anytime a new root is set by the validator
  </Card>

  <Card title="rootUnsubscribe" href="/api-reference/rpc/websocket/rootunsubscribe">
    Unsubscribe from root notifications
  </Card>

  <Card title="signatureSubscribe" href="/api-reference/rpc/websocket/signaturesubscribe">
    Subscribe to a transaction signature to receive notification when the transaction is confirmed
  </Card>

  <Card title="signatureUnsubscribe" href="/api-reference/rpc/websocket/signatureunsubscribe">
    Unsubscribe from signature confirmation notification
  </Card>

  <Card title="slotSubscribe" href="/api-reference/rpc/websocket/slotsubscribe">
    Subscribe to receive notification anytime a slot is processed by the validator
  </Card>

  <Card title="slotUnsubscribe" href="/api-reference/rpc/websocket/slotunsubscribe">
    Unsubscribe from slot notifications
  </Card>

  <Card title="transactionSubscribe" href="/api-reference/rpc/websocket/transactionsubscribe">
    Subscribe to real-time transaction events with custom filters
  </Card>
</CardGroup>

## Unstable Methods (Not Supported)

These subscription methods are considered unstable and are not supported on Helius.

This documentation is provided for reference only.

<CardGroup cols={2}>
  <Card title="blockSubscribe" href="/api-reference/rpc/websocket/blocksubscribe">
    Subscribe to receive notification anytime a new block is confirmed or finalized
  </Card>

  <Card title="blockUnsubscribe" href="/api-reference/rpc/websocket/blockunsubscribe">
    Unsubscribe from block notifications
  </Card>

  <Card title="slotsUpdatesSubscribe" href="/api-reference/rpc/websocket/slotsupdatessubscribe">
    Subscribe to receive notification anytime a slot is processed, optimized for high performance applications
  </Card>

  <Card title="slotsUpdatesUnsubscribe" href="/api-reference/rpc/websocket/slotsupdatesunsubscribe">
    Unsubscribe from slots updates notifications
  </Card>

  <Card title="voteSubscribe" href="/api-reference/rpc/websocket/votesubscribe">
    Subscribe to receive notification anytime a new vote is observed in gossip
  </Card>

  <Card title="voteUnsubscribe" href="/api-reference/rpc/websocket/voteunsubscribe">
    Unsubscribe from vote notifications
  </Card>
</CardGroup>

## Next Steps

To get started:

1. [Sign up](https://dashboard.helius.dev/signup) for a Helius account (Agents: use the [Helius CLI](https://www.helius.dev/docs/api-reference/helius-cli) to programmatically create accounts)
2. Get your [WebSocket endpoints](https://www.helius.dev/docs/api-reference/endpoints#solana-websocket-endpoints)
3. Follow the [WebSockets QuickStart guide](https://www.helius.dev/docs/rpc/websocket/quickstart).

## Support

If you need help using WebSockets, please read our [FAQs](https://www.helius.dev/docs/faqs/websockets) and reach out to support for additional help:

<CardGroup cols={2}>
  <Card title="Discord Community" icon="discord" href="https://discord.com/invite/6GXdee3gBj">
    Join Discord for real-time support
  </Card>

  <Card title="Email Support" icon="envelope" href="mailto:support@helius.xyz">
    Contact our support team directly
  </Card>
</CardGroup>
