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": "getRecentPerformanceSamples",
"params": [
4
]
}
'{
"jsonrpc": "2.0",
"id": "db16f277-1a22-41ff-9f85-f37e2cd77900",
"result": [
{
"numNonVoteTransactions": 61716,
"numSlots": 150,
"numTransactions": 201142,
"samplePeriodSecs": 60,
"slot": 373339645
}
]
}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": "getRecentPerformanceSamples",
"params": [
4
]
}
'{
"jsonrpc": "2.0",
"id": "db16f277-1a22-41ff-9f85-f37e2cd77900",
"result": [
{
"numNonVoteTransactions": 61716,
"numSlots": 150,
"numTransactions": 201142,
"samplePeriodSecs": 60,
"slot": 373339645
}
]
}The JSON-RPC protocol version.
2.0 "2.0"
A unique identifier for the request.
"1"
The name of the RPC method to invoke.
getRecentPerformanceSamples "getRecentPerformanceSamples"
Optional parameter to limit the number of samples to return.
Number of historical performance sample intervals to retrieve (maximum 720, representing up to 12 hours).
Successfully retrieved performance samples.
The JSON-RPC protocol version.
2.0 "2.0"
Identifier matching the request.
"1"
List of performance samples.
Show child attributes
Solana blockchain slot at the end of this performance sampling period.
348125
Total number of transactions processed during this sampling window, including both user transactions and validator votes.
126
Number of actual user transactions (excluding validator consensus votes) processed in this period.
1
Duration of this performance measurement window in seconds, typically 60-second intervals.
60
Number of Solana slots successfully produced during this sampling period, indicating blockchain progress.
126
Was this page helpful?