🖥️For Developers
Technical insights for developers integrating xAxios AI’s API, automating trades, or contributing to the ecosystem. Leverage blockchain data and AI-driven tools.
🛡️ Rug Checker API
Check whether a token on the Solana network shows potential signs of being a rug pull or contains suspicious parameters like unlocked LPs, lack of freeze authority, or top-heavy holder distribution.
🔗 Endpoint
POST https://api.xaxios.com/terminal/rugCheck
🧾 Headers
{
"accept": "application/json",
"content-type": "application/json"
}
📦 Request Body
{
"contractAddress": "3hKtBHkMrTkQ7YaxqtyJNq2VuCMNRXBvuWRC9pXXJ8Ej",
"network": "solana"
}
Parameter
Type
Required
Description
contractAddress
string
✅
SPL token address to analyze
network
enum
✅
Blockchain network (see supported values below)
🔽 Supported network values:
Value
Description
solana
Solana blockchain
bnb
BNB Chain (Binance Smart Chain)
eth
Ethereum Mainnet
base
Base
✅ Example Request (JavaScript - fetch)
fetch("https://api.xaxios.com/terminal/rugCheck", {
method: "POST",
headers: {
"accept": "application/json",
"content-type": "application/json"
},
body: JSON.stringify({
contractAddress: "3hKtBHkMrTkQ7YaxqtyJNq2VuCMNRXBvuWRC9pXXJ8Ej",
network: "solana"
})
});
📤 Example Response
{
"success": true,
"data": {
"contractAddress": "3hKtBHkMrTkQ7YaxqtyJNq2VuCMNRXBvuWRC9pXXJ8Ej",
"createdAt": "2025-04-07T18:22:15.119Z",
"mintable": false,
"lpLocked": {
"lpLockedPct": 41.78,
"lpLocked": true
},
"freezeAuthority": false,
"topHolders": [
{
"address": "6ek42...",
"amount": 17921743511270310,
"decimals": 9,
"pct": 17.92,
"uiAmount": 17921743.511,
"uiAmountString": "17921743.511",
"owner": "GpMZbSM2...",
"insider": false,
"type": "AMM",
"name": "Raydium CPMM Pool"
}
// More holders...
],
"topHolderPercentage": 38.31,
"isSuspicious": false,
"coinInfo": {
"name": "xAxios AI Coin",
"symbol": "xAxiosAI",
"twitter": "xaxiosai",
"telegram": "xaxiosaiportal",
"discord": null,
"dexScreenerUrl": "https://dexscreener.com/solana/...",
"marketCap": 35450,
"imageUrl": "https://dd.dexscreener.com/ds-data/...",
"website": "https://xaxios.com/"
},
"devTokens": [],
"devTokensCount": "Coming Soon",
"securityScore": 100,
"reasons": []
}
}
📚 Response Fields
🔸 Token Analysis
Field
Type
Description
mintable
boolean
Is the token still mintable?
freezeAuthority
boolean
Is freeze authority still active?
lpLockedPct
float
% of LP tokens locked
lpLocked
boolean
Are LP tokens locked?
topHolderPercentage
float
Total percentage held by top 10 wallets
isSuspicious
boolean
AI judgment: is this token risky?
securityScore
number
0–100 score assigned by AI (100 = safest)
createdAt
string
Time this report was generated
🔸 Top Holders
Each item in topHolders includes:
Field
Type
Description
address
string
Token account
amount
number
Raw amount (lamports)
decimals
number
Token decimals
pct
float
% of supply held
uiAmount
float
Human-readable amount
uiAmountString
string
Same as above in string format
owner
string
Owner wallet
type
string
Type: WALLET, AMM, LOCKER, etc.
name
string
Platform name (e.g. Raydium, Jupiter)
insider
boolean
Is this wallet labeled as “insider”?
🔸 Token Metadata (coinInfo)
Field
Type
Description
name
string
Token name
symbol
string
Token symbol
marketCap
number
Estimated market cap in USD
website
string
Official website
string
Twitter handle
telegram
string
Telegram community
discord
string
Discord (may be null)
imageUrl
string
Token logo
dexScreenerUrl
string
Link to DEX Screener token analytics
🔸 Dev Tokens
It can also be maintenance, follow us on Telegram and X.
Field
Type
Description
devTokens
array
(Empty or coming soon)
devTokensCount
string
Currently: "Coming Soon"
🔸 AI Flags
Field
Type
Description
reasons
array
If isSuspicious is true, reasons are listed
Last updated