curl --request POST \
--url https://lon.send.raze.sh/ \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": 1,
"method": "sendBundle",
"params": [
[
"4hXTCkRzt9WyecNzV1XPgCDfGAZzQKNxLXgynz5QDuWJ...",
"5mYUDkRzt9WyecNzV1XPgCDfGAZzQKNxLXgynz5QDuWJ..."
],
{
"encoding": "base58"
}
]
}
'{
"jsonrpc": "2.0",
"result": "4xTWpZFcQh8mK3nRJjz3wXBoRgixCa6xjnB7YaB1pPB263...",
"id": 1
}Submit a Jito-compatible bundle via JSON-RPC 2.0. Bundles are forwarded to the Jito Block Engine for atomic execution.
If your bundle does not include a Jito tip, the relay automatically sponsors one and appends it as the 5th transaction.
Bundle constraints:
curl --request POST \
--url https://lon.send.raze.sh/ \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": 1,
"method": "sendBundle",
"params": [
[
"4hXTCkRzt9WyecNzV1XPgCDfGAZzQKNxLXgynz5QDuWJ...",
"5mYUDkRzt9WyecNzV1XPgCDfGAZzQKNxLXgynz5QDuWJ..."
],
{
"encoding": "base58"
}
]
}
'{
"jsonrpc": "2.0",
"result": "4xTWpZFcQh8mK3nRJjz3wXBoRgixCa6xjnB7YaB1pPB263...",
"id": 1
}Documentation Index
Fetch the complete documentation index at: https://docs.raze.bot/llms.txt
Use this file to discover all available pages before exploring further.
JSON-RPC version
2.0 "2.0"
JSON-RPC method name
sendBundle "sendBundle"
[transactions, options?]
transactions (array of strings) — Encoded signed transactions (max 5 with tip, max 4 without)options (object, optional) — { "encoding": "base58" | "base64" } (default: base58)[
[
"4hXTCkRzt9WyecNzV1XPgCDfGAZzQKNxLXgynz5QDuWJ...",
"5mYUDkRzt9WyecNzV1XPgCDfGAZzQKNxLXgynz5QDuWJ..."
],
{ "encoding": "base58" }
]Request ID
1