Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key

Get Snipers by Pair Address Mainnet Only

Solana Logo

Looking for snipers by pair address on Solana?

Access Snipers by pair address data using our powerful Solana API

Explore Solana API
GEThttps://deep-index.moralis.io/api/v2.2/pairs/:address/snipers

Get all snipers (wallets that quickly buy and sell tokens) for a specific token pair address.

PATH PARAMS
addressstringrequired
The pair address for which snipers are to be retrieved.
QUERY PARAMS
chainstring
The chain to query.
blocksAfterCreationnumber
The number of blocks after the token pair creation to consider for sniper activity.
Responses
200Returns snipers by pair address.
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/pairs/0xa3c2076eb97d573cc8842f1db1ecdf7b6f77ba27/snipers?chain=eth&blocksAfterCreation=1000' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"transactionHash": "0x2bfcba4715774420936669cd0ff2241d70e9abecab76c9db813602015b3134ad",
"blockTimestamp": "2022-02-22T00:00:00Z",
"blockNumber": "",
"result": [
{
"walletAddress": "0x2bfcba4715774420936669cd0ff2241d70e9abec",
"totalTokensSniped": "",
"totalSnipedUsd": "",
"totalSnipedTransactions": "",
"totalTokensSold": "",
"totalSoldUsd": "",
"totalSellTransactions": "",
"currentBalance": "",
"currentBalanceUsdValue": "",
"realizedProfitPercentage": "",
"realizedProfitUsd": "",
"snipedTransactions": [
{
"transactionHash": "0x2bfcba4715774420936669cd0ff2241d70e9abec",
"blocksAfterCreation": "",
"transactionTimestamp": ""
}
],
"sellTransactions": [
{
"transactionHash": "0x2bfcba4715774420936669cd0ff2241d70e9abec",
"blocksAfterCreation": "",
"transactionTimestamp": ""
}
]
}
]
}