🖥️Dashboard

All endpoints and responses specific to the Pepe Analytics Dashboard

Get Dashboard Home

GET https://api.pepeanalytics.com/v1/dashboard/home

Returns the current gas price, new pairs deployed in the last day, timeseries volume data on DEX's, and a count of the new pairs in the last day.

{
    data: {
        currentGas: number,
        newPairs: [                                    # New liquidity pools created in the last day on UniSwap and SushiSwap 
            {
                address: string
                createdAt: string
                txCount: string
                volumeUSD: string
                protocol: 'uniswap' | 'sushiswap'
                tradeLink: string
                usdPrice: string
                tvl: {
                    usd: string
                    eth: string
                },
                baseToken: {
                    address: string
                    symbol: string
                    name: string
                    decimals: string
                    price: string
                    volume: string
                    tvl: string
                },
                quoteToken: {
                    address: string
                    symbol: string
                    name: string
                    decimals: string
                    price: string
                    volume: string
                    tvl: string
                }
            }
            ...
        ]
        pairsCount: number
        chartData: {                                # Timeseries data on each DEX
            uniswap: [
                {
                    x: string (UTC)
                    y: number
                }
                ...
            ]
            sushiswap: [
                {
                    x: string (UTC)
                    y: number
                }
                ...
            ]
        }
    }
    message: string
    isError: boolean
}

Get Dashboard Token

GET https://api.pepeanalytics.com/v1/dashboard/token/:address

Gets all data on a token including first 10 transactions, PEPEAI holders and their balances, up to 150 transactions per pool (if any), all normal token data, and more

Last updated