🔶Get Pairs

Returns all the token holdings details of a user

API https://api.autosnipe.ai/sniper-api/token/pairs

Request Method Get

Request Headers

NameValue

x-autosnipe-apikey

<YOUR_API_KEY>

x-autosnipe-signature

generated Signature

Content-Type

'application/json'

Request Params

NameTypeDescription

type

number

0 - New Raydium Pairs 1 - Top Raydium Pairs 2 - New Pump.fun Pairs 3 - New Moonshot Pairs

Response Params

{
    "status": 1,
    "data": {
        "z6YUptdW1CBMdarHsKHUWrdqbxeKzRtvAKrGyJnpump": {
            "id": 433810,
            "chain_id": 0,
            "currentPrice": "0.00000001958071668721706",
            "pair_address": "EnoSqhWX5EyBawnGFRNYJ6jZLUAEyJ3GGrRkcrnpnQ24",
            "token_address": "z6YUptdW1CBMdarHsKHUWrdqbxeKzRtvAKrGyJnpump",
            "liquidity": 79.0053591,
            "current_liquidity": 317.95825909999934,
            "pair_created_time": "2024-07-26 09:31:53",
            "blockTime": 1721966513,
            "supply": 1000000000,
            "sellCount": 246,
            "buyCount": 264,
            "sellVol": 482.1199000000002,
            "buyVol": 421.1590999999995,
            "holdings": 7.29,
            "metadata": {
                "image": "https://gateway.irys.xyz/dBeEunxczL5vFzh0tVE6wkZ0UmbbylvGtbTppcMhYBI",
                "supply": 1000000000,
                "symbol": "MUMU",
                "twitter": "https://x.com/bull_mumu",
                "website": "http://www.mumuthebull-muvement.com/",
                "showName": true,
                "telegram": "https://t.me/MumuTheBull_Entry",
                "description": "Introducing $MUMU THE BULL \\n\\nWe all seen the rise of MUMU as it hits above 150 million in mc. \\n\\nThis is everyone’s second chance for all and the muuuuvement has begun \\n\\nTg: https://t.me/MumuTheBull_Entry\\nWeb: http://www.mumuthebull-muvement.com/\\nX: https://x.com/bull_mumu"
            },
            "sent": "webhook1",
            "mint_authority": 0,
            "freeze_authority": 0,
            "vol": 0,
            "website_available": -1,
            "chain_scam": 0,
            "migrated_from_pump": 1,
            "lp_burn": 100
        }
        .
        .
        .
    }
}

NodeJS

let body = {}
callAuthAPI("/token/pairs?type=<type>", body, "GET")

Last updated