Axiom API Replacement
Drop-in replacement for the discontinued Axiom API. Same endpoints, same response format.
:::info Why This Exists Axiom's public API is no longer accessible. We've rebuilt the essential endpoints so your tools keep working. :::
Available Endpoints
Token Fees
Get fee information for a Solana token.
Endpoint:GET http://144.76.39.46:4210/fees?mint={TOKEN_MINT}| Parameter | Type | Description |
|---|---|---|
mint | string | Token mint address |
curl "http://144.76.39.46:4210/fees?mint=9FjLM5thSba1QCgBw3eBqRc7TdDeAe2mXft5bosKCbQj"{
"mint": "9FjLM5thSba1QCgBw3eBqRc7TdDeAe2mXft5bosKCbQj",
"buyFee": 0,
"sellFee": 0,
"transferFee": 0
}Python Example
import requests
def get_token_fees(mint: str) -> dict:
response = requests.get(
"http://144.76.39.46:4210/fees",
params={"mint": mint}
)
response.raise_for_status()
return response.json()
# Usage
fees = get_token_fees("9FjLM5thSba1QCgBw3eBqRc7TdDeAe2mXft5bosKCbQj")
print(f"Buy fee: {fees['buyFee']}%")
print(f"Sell fee: {fees['sellFee']}%")JavaScript Example
async function getTokenFees(mint) {
const response = await fetch(
`http://144.76.39.46:4210/fees?mint=${mint}`
);
return response.json();
}
// Usage
const fees = await getTokenFees("9FjLM5thSba1QCgBw3eBqRc7TdDeAe2mXft5bosKCbQj");
console.log(`Buy fee: ${fees.buyFee}%`);Global Fees
Get a comprehensive breakdown of all fees paid across transactions for a Solana token — including transaction fees, block provider tips, and DEX trading fees.
Standard blockchain explorers only show base transaction fees. But on Solana, the actual cost of a trade includes multiple fee components:
- Transaction fees (base + priority)
- Tips to block providers (Jito, SWQOS, Rapid)
- Trading fees paid to DEX protocols
This endpoint captures all three, providing a complete picture of trading costs per token.
Endpoint:GET https://api.web3engineering.co.uk/global-fees?mint={TOKEN_MINT}| Parameter | Type | Description |
|---|---|---|
mint | string | Token mint address |
curl "https://api.web3engineering.co.uk/global-fees?mint=475LAUKkzj3Vnsv2FG5RJzTMFQKixRNATYnRNfjCpump"{
"mint": "475LAUKkzj3Vnsv2FG5RJzTMFQKixRNATYnRNfjCpump",
"total": 74380351,
"transaction_fees": 15348485,
"base_fees": 30000,
"priority_fees": 15318485,
"tips": 21501000,
"trading_fees": 37530866,
"tx_count": 5,
"success_count": 4
}All fee values are in lamports (1 SOL = 1,000,000,000 lamports).
Response Fields:| Field | Type | Description |
|---|---|---|
mint | string | Token mint address |
total | number | Sum of all fees (lamports) |
transaction_fees | number | Base + priority fees |
base_fees | number | Fixed transaction fees |
priority_fees | number | Priority/compute fees |
tips | number | Block provider tips |
trading_fees | number | DEX protocol fees |
tx_count | number | Total transactions analyzed |
success_count | number | Successful transactions |
Fee Components Explained
Transaction Fees — Standard Solana transaction costs:
| Component | Description |
|---|---|
| base_fees | Fixed fee per signature (5,000 lamports) |
| priority_fees | Variable fee for transaction priority |
Tips — Payments to block providers for transaction inclusion:
| Provider | Description |
|---|---|
| Jito | MEV-aware block builder tips |
| SWQOS | Quality of service node payments |
| Rapid | Fast inclusion provider tips |
Tips vary significantly per transaction and depend on network congestion and competition for block space.
Trading Fees — Protocol fees paid to DEX platforms:
| Example | Description |
|---|---|
| pump.fun | Protocol fee on buys/sells routed to recipient accounts |
| Raydium | LP fees and protocol fees |
| Meteora | Dynamic fees based on volatility |
Comparison with Other Tools
Tools like GMGN and Axiom typically show only meta.fee from transaction metadata, which captures base and priority fees but misses:
- Tips (often 20-40% of total costs)
- Trading fees (protocol-specific, can exceed transaction fees)
For the example token above:
- Standard tools: ~0.015 SOL
- Global Fees endpoint: 0.074 SOL (includes 0.0215 SOL tips + 0.0375 SOL trading fees)
Rate Limits
| Tier | Limit |
|---|---|
| Free | 100 requests/minute |
| Subscriber | Unlimited |
Roadmap
More endpoints coming soon. Contact us if you need a specific Axiom endpoint rebuilt.
Migration from Axiom
Replace the Axiom base URL with ours:
- https://api.axiom.trade/v1/fees?mint=...
+ http://144.76.39.46:4210/fees?mint=...Response format is identical—no code changes needed beyond the URL.