Solana RPC
getSignaturesForAddress
Returns signatures for confirmed transactions that include the given address in their accountKeys list. Returns signatures backwards in time from the provided signature or most recent confirmed block
POST
getSignaturesForAddress
Request Parameters
string
required
Solana account address to retrieve transaction history for (wallet, token, program, NFT, etc.).
string
The commitment level for the request. The
processed commitment is not supported.confirmedfinalized
number
The minimum slot that the request can be evaluated at.
number
Maximum number of transaction signatures to return in a single request (1-1,000).
string
Pagination parameter to get transactions before this signature (earlier in time).
string
Get transactions until this signature is reached, useful for specific time ranges.
Authorizations
Body
application/json
The JSON-RPC protocol version.
Available options:
2.0 Example:
"2.0"
A unique identifier for the request.
Example:
"1"
The name of the RPC method to invoke.
Available options:
getSignaturesForAddress Example:
"getSignaturesForAddress"
Array containing the required account address and optional configuration object.
Solana account address to retrieve transaction history for (wallet, token, program, NFT, etc.).
Example:
"Vote111111111111111111111111111111111111111"