Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.blockrush.io/llms.txt

Use this file to discover all available pages before exploring further.

Append ?anti_mev=1 to the endpoint to enable sandwich-attack protection. See Anti-MEV for details.

Request

Endpoint:

POST /

JSON-RPC Parameters:

params[0]
string
required
Fully signed transaction, Base64 encoded string
params[1]
object
required
Encoding configuration object

JSON-RPC Response Result

result
string
required
Transaction signature. The result format matches the Solana RPC documentation
Request(cURL)
curl -X POST 'https://ny.rpc.blockrush.io' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: <YOUR_API_KEY>' \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "sendTransaction",
    "params": [
      "<base64_encoded_tx>",
      { "encoding": "base64" }
    ]
  }'
{
  "jsonrpc": "2.0",
  "result": "<tx_signature>",
  "id": 1
}