curl --request POST \
--url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": "db16f277-1a22-41ff-9f85-f37e2cd77900",
"method": "getSignaturesForAddress",
"params": [
"Vote111111111111111111111111111111111111111"
]
}
'{
"jsonrpc": "2.0",
"id": 1,
"result": [
{
"signature": "5XXN7L7cMGYTvckcaNeTXxhJgxeT1JTa9auwa2yXCFR1NXzwXrXNAWx4SaAw48S5186VzvXiXVEsWJu1WFR5AAmg",
"slot": 114,
"err": null,
"memo": null,
"blockTime": null,
"confirmationStatus": "finalized"
}
]
}curl --request POST \
--url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": "db16f277-1a22-41ff-9f85-f37e2cd77900",
"method": "getSignaturesForAddress",
"params": [
"Vote111111111111111111111111111111111111111"
]
}
'{
"jsonrpc": "2.0",
"id": 1,
"result": [
{
"signature": "5XXN7L7cMGYTvckcaNeTXxhJgxeT1JTa9auwa2yXCFR1NXzwXrXNAWx4SaAw48S5186VzvXiXVEsWJu1WFR5AAmg",
"slot": 114,
"err": null,
"memo": null,
"blockTime": null,
"confirmationStatus": "finalized"
}
]
}The JSON-RPC protocol version.
2.0 "2.0"
A unique identifier for the request.
"1"
The name of the RPC method to invoke.
getSignaturesForAddress "getSignaturesForAddress"
Array containing the required account address and optional configuration object.
Solana account address to retrieve transaction history for (wallet, token, program, NFT, etc.).
"Vote111111111111111111111111111111111111111"
Successfully retrieved signatures for the specified address.
The JSON-RPC protocol version.
2.0 "2.0"
Identifier matching the request.
"1"
List of transaction signature information.
Show child attributes
Transaction signature as a base-58 encoded string.
"5XXN7L7cMGYTvckcaNeTXxhJgxeT1JTa9auwa2yXCFR1NXzwXrXNAWx4SaAw48S5186VzvXiXVEsWJu1WFR5AAmg"
The slot that contains the block with the transaction.
114
Error if the transaction failed, or null if successful.
null
Memo associated with the transaction, or null if none.
null
Estimated production time as Unix timestamp (seconds since epoch), or null if not available.
null
Transaction's cluster confirmation status.
processed, confirmed, finalized "finalized"
Was this page helpful?