Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

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}
Parameters:
ParameterTypeDescription
mintstringToken mint address
Example Request:
curl "http://144.76.39.46:4210/fees?mint=9FjLM5thSba1QCgBw3eBqRc7TdDeAe2mXft5bosKCbQj"
Example Response:
{
  "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}
Parameters:
ParameterTypeDescription
mintstringToken mint address
Example Request:
curl "https://api.web3engineering.co.uk/global-fees?mint=475LAUKkzj3Vnsv2FG5RJzTMFQKixRNATYnRNfjCpump"
Example Response:
{
    "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:
FieldTypeDescription
mintstringToken mint address
totalnumberSum of all fees (lamports)
transaction_feesnumberBase + priority fees
base_feesnumberFixed transaction fees
priority_feesnumberPriority/compute fees
tipsnumberBlock provider tips
trading_feesnumberDEX protocol fees
tx_countnumberTotal transactions analyzed
success_countnumberSuccessful transactions

Fee Components Explained

Transaction Fees — Standard Solana transaction costs:

ComponentDescription
base_feesFixed fee per signature (5,000 lamports)
priority_feesVariable fee for transaction priority

Tips — Payments to block providers for transaction inclusion:

ProviderDescription
JitoMEV-aware block builder tips
SWQOSQuality of service node payments
RapidFast 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:

ExampleDescription
pump.funProtocol fee on buys/sells routed to recipient accounts
RaydiumLP fees and protocol fees
MeteoraDynamic 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

TierLimit
Free100 requests/minute
SubscriberUnlimited

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.

Join traders already using our infrastructure