getSignatureStatuses
Solana node API
getSignatureStatuses | Solana
The Solana getSignatureStatuses method returns the status of a list of signatures. Available on Solana via Chainstack JSON-RPC nodes.
POST
getSignatureStatuses
Documentation Index
Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
Use this file to discover all available pages before exploring further.
Solana getSignatureStatuses method
The Solana getSignatureStatuses method returns the status of a list of signatures.
This method provides the status of each signature, which indicates whether the transaction was successfully processed, is still being processed, or resulted in an error. It is useful for tracking the status of transactions.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
signatures— an array of signatures to retrieve the status for.options— (optional) additional options:searchTransactionHistory— whether to search the transaction history for the status of each signature.
Response
value— an array of signature status objects, each containing:slot— the slot in which the transaction was processed.confirmations— the number of confirmations for the transaction.err— whether the transaction resulted in an error.status— the status of the transaction.
Use case
A practical use case forgetSignatureStatuses is to track the status of transactions. This can be useful for wallets or other applications that need to display or make use of this information.Last modified on May 18, 2026