SendTransaction

Send Transaction RPC Method

POST https://sol-rpc.kolibr.io/ Submits a signed transaction to the Kolibrio Order Flow service and rebroadcasts it to another source if required. Fully implements the standard Solana sendTransaction RPC method.

Additional URL Query Parameters

Name
Description

rev_recv (required)

The address that will receive arbitrage payments in SOL.

tx_broadcast_mode (optional)

The method used to broadcast the target transaction. Available options:

  • backrun_only (default): Ignores the single target transaction submission. It will only be submitted as part of an arbitrage bundle. This mode is ideal for originators that want to mirror the transaction to extract arbitrage but handle the actual submission themselves.

  • jito: Sends the target transaction to Jito. (note: the target transaction must include a Jito tip to be included individually)

  • public: Sends the target transaction to known public RPCs.

Headers

Name
Description

Authorization (optional)

An optional parameter, represented by a GUID string. While not required for basic operations, it is necessary for accessing premium features like the subsidy mode and enables higher rate limits.

To obtain an Authorization GUID, users must contact the Kolibrio team directly.

Request Example

curl https://sol-rpc.kolibr.io/?rev_recv=DVz9Ryo4vUpizkpFoaUGGU4y5guc2bcBFSFAJvjQVmz5&tx_broadcast_mode=backrun_only \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: 123e4567-e89b-12d3-a456-426614174000" \
  -d '
  {
    "jsonrpc": "2.0",
    "id": 1,
    "method": "sendTransaction",
    "params": [
      "4hXTCkRzt9WyecNzV1XPgCDfGAZzQKNxLXgynz5QDuWWPSAZBZSHptvWRL3BjCvzUXRdKvHL2b7yGrRQcWyaqsaBCncVG7BFggS8w9snUts67BSh3EqKpXLUm5UMHfD7ZBe9GhARjbNQMLJ1QD3Spr6oMTBU6EhdB4RD8CP2xUxr2u3d6fos36PD98XS6oX8TQjLpsMwncs5DAMiD4nNnR8NBfyghGCWvCVifVwvA8B8TJxE1aiyiv2L429BCWfyzAme5sZW8rDb14NeCQHhZbtNqfXhcp2tAnaAT"
    ]
  }
'

Response Example

{
  "jsonrpc": "2.0",
  "result": "2id3YC2jK9G5Wo2phDx4gJVAew8DcY5NAojnVuao8rkxwPYPe8cSwE5GzhEgJA2y8fVjDEo6iR6ykBvDxrTQrtpb",
  "id": 1
}

Last updated