🔶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
Name
Value
x-autosnipe-apikey
<YOUR_API_KEY>
x-autosnipe-signature
generated Signature
Content-Type
'application/json'
Request Params
Name
Type
Description
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
}
.
.
.
}
}
{
"status": 1,
"data": {
"5m": {
"4BYNAVYbZrReQZDwVXyfPXg8Rt24m8jMLYaMzL3goHsy": {
"id": 433907,
"chain_id": 0,
"pair_address": "B2rRy3MgsgDxrmdbbJxrk7UVU1L8NxYgW178hm2bnMdy",
"token_address": "4BYNAVYbZrReQZDwVXyfPXg8Rt24m8jMLYaMzL3goHsy",
"liquidity": 37.701209717077006,
"current_liquidity": 198.2691129943503,
"vol": 8484.20577118644,
"blockTime": 1721976735,
"metadata": {
"image": "https://cf-ipfs.com/ipfs/QmYXy3C4CNNC6yHpNfbU59cC2Dt1iMRSYsbKZ6wU2BpUmf",
"supply": 1000000000,
"symbol": "BABYMUMU",
"showName": true,
"telegram": "https://t.me/baby_mumu_portal",
"createdOn": "https://pump.fun",
"description": ""
},
"mint_authority": 0,
"freeze_authority": 0,
"pair_created_time": "2024-07-26T06:52:15.000Z",
"openTime": 0,
"sellCount": 4724,
"buyCount": 4939,
"lp_burn": 100,
"sellVol": 4.5503,
"buyVol": 5.0792,
"currentPrice": 0.0000021453232350229933,
"holdings": 13.8,
"index": 0,
"chain_scam": 0,
"migrated_from_pump": 1,
"last_updated": 1721980050262,
"supply": 1000000000
}
}
.
.
.
}
}
status - (api status, 1 on success, 0 on failure)
Intervals - 5min, 1 Hr, 6 Hrs, 24 Hrs
NodeJS
let body = {}
callAuthAPI("/token/pairs?type=<type>", body, "GET")
Last updated