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

Identify sniper wallets that bought a token within a specified timeframe (blocksAfterCreation). Each wallet returned includes detailed information about how much was bought, sold as well as PnL stats and more.

PATH PARAMS
addressstringrequired
The pair address token-transactions are to be retrieved for.
QUERY PARAMS
chainstring
The chain to query
blocksAfterCreationnumber

Number of blocks after the creation

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": 21093423,
"result": [
{
"walletAddress": "0x2bfcba4715774420936669cd0ff2241d70e9abec",
"totalTokensSniped": "",
"totalSnipedUsd": "",
"totalSnipedTransactions": "",
"totalTokensSold": "",
"totalSoldUsd": "",
"totalSellTransactions": "",
"currentBalance": "",
"currentBalanceUsdValue": "",
"realizedProfitPercentage": "",
"realizedProfitUsd": "",
"snipedTransactions": [
{
"transactionHash": "0x2bfcba4715774420936669cd0ff2241d70e9abec",
"blocksAfterCreation": "",
"transactionTimestamp": ""
}
],
"sellTransactions": [
{
"transactionHash": "0x2bfcba4715774420936669cd0ff2241d70e9abec",
"blocksAfterCreation": "",
"transactionTimestamp": ""
}
]
}
]
}