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.

Request

Method:

GET ./api/v2/system/slot-info

Parameters:

Parameter
Type
Description

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:

Fields
Type
Description

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