🟢Pools and Tokens

Statistics data of pools being sandwiched

The statistics data of top 300 pools sandwiched within 1, 7 or 30 days, update hourly

API endpoint:

https://api.eigenapi.io/pool/sandwiched
?chain=<chain>
&apikey=<apikey>
&duration=<duration>
&page=<page>
&limit=<limit>

Quota

2 calls per second for each API key

Request

Query Parameters

Parameter
Description

chain

required,

supported values: ethereum, or bsc

apikey

required

duration

1, 7 or 30 for statistics duration of 1, 7 or 30 Days

default: 30

page

Returns the number of page. starting from 0 by default

limit

The max number of response records. A range of (0, 150] is supported.

Repsonse

{
    "data": [
        {
            "address": "0xcd4a2f72e3d646e8addab74a68c2175d6a36b0e3",
            "sandwichedTrades": 1105,   //The number of transactions in which Pool was sandwiched
            "sandwichedVolume": 3041736.597842947, //The transaction volume of Pool being sandwiched
            "symbol": "UNI-V2",
            "tokens": [
                {
                    "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                    "symbol": "WETH"
                },
                {
                    "address": "0xfc979087305a826c2b2a0056cfaba50aad3e6439",
                    "symbol": "DAFI"
                }
            ],
            "trades": 13016 //Total number of transactions that occurred in Pool
        }
    ]
}

Last updated