getInflightBundleStatuses
Returns the status of Jito bundles submitted within the last five minutes.
https://api.1inch.com/web3/501
Supported on: Solana
Request
Request
object jsonrpc
* string (Enum)JSON-RPC version
2.0
method
* string The method to call
params
array Method parameters
items
any id
* number Request ID
JavaScript
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const response = await fetch('https://api.1inch.com/web3/501', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${API_KEY}`,
},
body: JSON.stringify({
jsonrpc: '2.0',
method: 'getInflightBundleStatuses',
params: [],
id: 1,
}),
});
const data = await response.json();
console.log(data);
Response
Inflight Bundle Statuses Response
Inflight Bundle Statuses Response
any Jito add-on payload (QuickNode Lil' JIT). Documented fields are typed, but additional properties are accepted on purpose: the shape is vendor-owned and may gain fields without a Solana spec change, and an over-strict schema here would fail live requests once response validation is enforced.
oneOf[0]
null oneOf[1]
object context
* object slot
* integer The slot this response corresponds to
apiVersion
string The current solana version running on the node
value
any oneOf[0]
null oneOf[1]
array items
object bundle_id
* string The bundle id
status
* string (Enum)Invalid when the bundle id is outside the 5-minute look back, otherwise Pending, Failed or Landed
Invalid
Pending
Failed
Landed
landed_slot
any The slot this bundle landed in, null when it did not land
oneOf[0]
null oneOf[1]
integer