slot-info
The GetSlotInfo endpoint can be used to determine whether the leader of a slot is malicious or non-malicious. Data is supported for the past two historic epochs, the current one, and the future one.
Use this endpoint’s data with caution. The maliciousness determination relies on historical block-building behavior during the leader’s previous slots. The data may be unreliable for newly staked validators without historical activity or if the validator is engaging in new, previously unseen MEV behaviours.
Note: This endpoint is available exclusively to Ultra-tier customers.
Request
Method:
GET ./api/v2/system/slot-info
Parameters:
slot
uint64
The target slot number.
Request example:
curl --header "Authorization: $AUTH_HEADER" \
'http://ny.solana.dex.blxrbdn.com/api/v2/system/slot-info?slot=361549233'
Response:
Fields:
slot
unit64
The target slot number.
leader
string
Leader identifier address.
malicious
boolean
The determination whether malicious or not.
Response Example:
{
"slot":"361549233",
"leader":"8uPW9msN75rfaKiwy8y8NxEX5zSk2WejtVv5YhZr3jCo",
"malicious":false
}
Last updated