Skip to main content

API Product Overview

Axol's API product provides unified access to 23+ blockchain networks through a single, simple REST API. Built-in gas optimization and price tracking features that cost $50-75/month extra at competitors - included free with every paid tier.

What You Get

  • 23+ Blockchain Networks - Ethereum, Polygon, Arbitrum, Optimism, Base, Gnosis, Avalanche, Celestia, Osmosis, dYdX, Sei, Bitcoin, Solana, Sui, Aptos, NEAR, Starknet, Polkadot, Tron
  • Built-in Gas Price API - Real-time gas prices, historical data, and optimization recommendations (7+ EVM chains)
  • Built-in Price Tracking - Token prices, historical data, and market analytics
  • WebSocket Support - Real-time blockchain events and updates
  • Analytics & Monitoring - Comprehensive API metrics, usage insights, and cost tracking
  • High Performance - 400-600 req/s throughput, <40ms p95 latency (production targets)
  • Fair CU-Based Pricing - Pay only for the compute you use

Why Axol API?

Included Value-Adds

Features that competitors charge extra for:

FeatureAxolAlchemyInfuraQuickNode
Gas Price APIIncluded$25-50/moNot available$30/mo
Token Price APIIncluded$30-75/moNot availableMarketplace
Blockchain Networks23+ chains8 chains10 chains12 chains
Analytics DashboardReal-timeAdd-onLimitedAdd-on

Total Value: $50-75/month of features included at no extra cost

Competitive Pricing

Free tier: 150M CUs/month with no credit card required.

Paid plans: Higher capacity and additional features available. View paid plans for details.

Supported Networks

Access 23+ blockchains with one API key through our unified endpoint structure:

EVM Chains (7)

  • Ethereum
  • Polygon
  • Arbitrum
  • Optimism
  • Base
  • Gnosis
  • Avalanche

Non-EVM Chains (12)

  • Celestia (Cosmos)
  • Osmosis (Cosmos)
  • dYdX (Cosmos)
  • Sei (Cosmos)
  • Bitcoin (UTXO)
  • Solana (Solana)
  • Sui (Move)
  • Aptos (Move)
  • NEAR (Near)
  • Starknet (Cairo)
  • Polkadot (Substrate)
  • Tron (TVM)

Beta Support (4)

  • Unichain (EVM) Beta
  • Babylon (Cosmos) Beta
  • Aztec (ZK) Beta
  • Elixir (Cross-chain) Beta

Full chain list with details ->

Core Features

1. Unified Blockchain Access

Single API interface works across all supported chains:

# Ethereum balance
curl https://api.axol.io/api/v1/blockchain/ethereum/balance/0x123...

# Solana balance
curl https://api.axol.io/api/v1/blockchain/solana/balance/abc123...

# Same pattern, different chains

2. Gas Optimization (Built-in)

Real-time gas prices and optimization recommendations:

# Current gas prices
GET /api/v1/gas/ethereum

# Response
{
"slow": 20,
"standard": 25,
"fast": 30,
"instant": 35,
"timestamp": "2025-10-12T10:30:00Z"
}

Gas API Features:

  • Real-time prices for 7+ EVM chains
  • Historical gas data
  • Gas optimization recommendations
  • Multi-chain comparison
  • Peak/off-peak analysis

CU Cost: 5-20 CUs (10x cheaper than standard blockchain calls)

3. Price Tracking (Built-in)

Token prices and market data:

# Token price
GET /api/v1/price/ethereum/USDC

# Response
{
"symbol": "USDC",
"price_usd": 0.9998,
"price_change_24h": -0.02,
"volume_24h": 5000000000,
"market_cap": 24000000000
}

Price API Features:

  • Real-time token prices
  • Historical price data
  • Multi-exchange aggregation
  • Market analytics
  • Price alerts

CU Cost: 5-15 CUs per query

4. WebSocket Streaming

Real-time blockchain events:

const ws = new WebSocket('wss://api.axol.io/ws/v1/ethereum');

ws.on('newBlocks', (block) => {
console.log('New block:', block.number);
});

Supported Subscriptions:

  • New blocks
  • Pending transactions
  • Event logs
  • Gas price updates
  • Token price updates

5. Analytics & Monitoring

Comprehensive analytics endpoints:

  • CU usage tracking and cost projections
  • Method breakdown by endpoint
  • Chain-by-chain analysis
  • Performance metrics (latency, throughput, error rates)
  • Historical data and trend analysis

Available Analytics Endpoints:

  • /api/v1/analytics/overview - Overall API metrics
  • /api/v1/analytics/performance - Performance statistics
  • /api/v1/analytics/chains/metrics - Per-chain usage data
  • /api/v1/usage/analytics - Detailed usage analytics

Getting Started

1. Sign Up

# Get your API key at https://app.axol.io
# Instant access, no credit card required for Free tier

2. Make Your First Call

curl -H "X-API-Key: YOUR_KEY" \
https://api.axol.io/api/v1/gas/ethereum

3. Integrate

Use our SDKs for easier integration:

# Python
from axol import AxolClient

client = AxolClient(api_key="YOUR_KEY")
gas = client.gas.get_prices("ethereum")
// TypeScript
import { AxolClient } from '@axol/api-client';

const client = new AxolClient({ apiKey: 'YOUR_KEY' });
const gas = await client.gas.getPrices('ethereum');

Full getting started guide →

Pricing

Free tier: 150M CUs/month, 23+ chains, WebSockets, no credit card required.

Paid plans: Higher capacity, trace/debug API access, SLAs, and more.

View pricing details

Use Cases

DeFi Applications:

  • Real-time token prices
  • Gas-optimized transactions
  • Multi-chain liquidity aggregation

NFT Marketplaces:

  • Cross-chain NFT data
  • Gas price recommendations
  • Transaction monitoring

Portfolio Trackers:

  • Multi-chain balance queries
  • Historical price data
  • Asset valuation

Analytics Platforms:

  • Blockchain data aggregation
  • Cross-chain comparisons
  • Historical analysis

Trading Bots:

  • Real-time price feeds
  • Gas optimization
  • Fast transaction submission

Interactive API Documentation

Explore our API with multiple interfaces:

Next Steps