Basics

GRPC We recommend using grpc for nextblock api interaction. To get started, the proto specs for grpc can be found here https://github.com/nextblock-ag/nextblock-proto.

Tip floor api The tip floor api returns landed tip percentiles from the last 5 minutes. You can use it to dynamically adjust your tips. The result is kept in line with jito tip floor api on purpose to make interop easier.

{
   "time":"2025-05-13T10:41:45Z",
   "landed_tips_25th_percentile":0.0011,
   "landed_tips_50th_percentile":0.005000001,
   "landed_tips_75th_percentile":0.01555,
   "landed_tips_95th_percentile":0.09339195639999975,
   "landed_tips_99th_percentile":0.4846427910400001,
   "ema_landed_tips_50th_percentile":0.005989477267191758
}

Last updated