POST
/
9de47db917d4f69168e3fed02217d15b
curl --request POST \
  --url https://nd-326-444-187.p2pify.com/9de47db917d4f69168e3fed02217d15b \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 1,
  "jsonrpc": "2.0",
  "method": "getSignatureStatuses",
  "params": [
    [
      "5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW"
    ],
    {
      "searchTransactionHistory": true
    }
  ]
}'
{
  "jsonrpc": "<string>",
  "id": 123,
  "result": [
    {}
  ]
}

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 you own node endpoint today

Start 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 for getSignatureStatuses 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.

Body

application/json
id
integer
default:1
jsonrpc
string
default:2.0
method
string
default:getSignatureStatuses
params
any[]

Response

200 - application/json
Signature statuses details
jsonrpc
string
id
integer
result
object[]