Kolibrio
  • Kolibrio Orderflow Service
  • Solana
    • How it works
    • API: Quick Start
      • SendTransaction
    • FAQ
    • Advanced
      • Subsidy Transactions
      • How to Protect Against Frontrunning on SOL
      • Stats API
  • Ethereum
    • How it works
    • API: Quick Start
      • eth_sendRawTransaction
      • eth_sendBundle
      • eth_getTransactionByHash
      • eth_getTransactionCount
    • Pending Transactions on Chain Explorer (Etherscan)
Powered by GitBook
On this page
  1. Solana
  2. Advanced

Stats API

PreviousHow to Protect Against Frontrunning on SOLNextEthereum

Last updated 5 months ago

Get TX Revshare Info

GET

The Stats endpoint provides summarized information about transactions received by Kolibrio, along with any associated revenue details.

Headers

Name
Value

Authorization

The authentication header should be the same as the one used for RPC broadcast requests.

Response Body

Name
Type
Description

backrun_exist

bool

Indicates whether any backrun transactions have been landed

backrun_signature

string

A signature of landed backrun transaction

revshare_info. revshare_signature

string

A signature of the on-chain transaction that executes the revenue split across participating parties

revshare_info. total_arbitrage_revenue_lamports

number

The total revenue extracted from an arbitrage opportunity (in lamports)

revshare_info. jito_tip_lamports

number

The amount paid to Jito for bundle inclusion (in lamports)

revshare_info. kolibrio_tip_lamports

number

Kolibrio fee (in lamports)

revshare_info. originator_tip_lamports

object

A mapping of Solana addresses to the lamport amounts paid to each originator partner. These recipients are determined by the rev_recv setting in the RPC request or through custom configuration.

Response

{
    "backrun_exist": true,
    "backrun_signature": "...SiGnAtTuRe...",
    "revshare_info": {
      "revshare_signature": "...SiGnAtTuRe...",
      "total_arbitrage_revenue_lamports": 1234,
      "jito_tip_lamports": 1234,
      "kolibrio_tip_lamports": 1234,
      "originator_tip_lamports": {
        "..SoLaDdReSs": 1234,
        "..SoLaDdReSs": 1234
        // ... more Solana addresses and their tip amounts
      },
    }
}
{
    "backrun_exist":false,
    "revahsare_info":null,
}

https://sol-analytics.kolibr.io/transaction/{TX_SIGNATURE}