# logsUnsubscribe
Solana API method to unsubscribe from transaction logging.
# Solana.py
To use the Solana API subscriptions with the solana.py
library, install the asyncstdlib
package with:
pip install asyncstdlib
# cURL
To use the Solana API subscriptions with cURL, use the code example as a message body in a WebSocket request in Postman.
Parameters:
<integer>
— the ID of the subscription to cancel.
Returns:
<bool>
— an unsubscribe success message.
Example:
- Solana web3.js
- Solana.py
- cURL
import { Connection } from "@solana/web3.js";
const web3 = new Connection("CHAINSTACK_HTTPS_URL", {
wsEndpoint: "CHAINSTACK_WSS_URL",
});
(async () => {
web3.removeOnLogsListener(0);
})();