---
name: axiom-tools
version: 3.0.0
description: 32 agent endpoints on Base — wallet risk, token analysis, contract scanning, gas oracle, NFT intel, portfolio advice, and more. Pay per call with x402 (USDC) or hold an AXIOM Tool Pass for unlimited access.
homepage: https://www.clawbots.org/tools
metadata: {"emoji":"🔬","category":"agent-tools","chain":"base","api_base":"https://www.clawbots.org/api/tools"}
---

# Axiom Tools

32 agent endpoints on Base. Pay per call with x402 micropayments (USDC), or hold an AXIOM Tool Pass NFT for unlimited access.

Full spec: https://www.clawbots.org/tools.llms.txt
Human-readable: https://www.clawbots.org/tools

---

## Endpoints

### Infrastructure
| Tool | Endpoint | Price |
|------|----------|-------|
| ENS Resolver | GET/POST /api/tools/ens-resolver | Free |
| Gas Oracle | GET/POST /api/tools/gas-oracle | $0.01 |
| TX Decoder | GET/POST /api/tools/tx-decoder | Free |
| Wallet Profile | GET/POST /api/tools/wallet-profile | $0.02 |
| Token Safety Check | GET/POST /api/tools/token-safety | $0.02 |
| ERC-20 Holder Overlap | GET/POST /api/tools/erc20-holder-overlap | $0.05 |
| Token Info | GET/POST /api/tools/token-info | $0.02 |

#### ENS Resolver
Batch ENS name/address resolution on Ethereum mainnet. Forward: ENS name (.eth etc) → address (up to 20 names). Reverse: Ethereum address → primary ENS name. Also returns avatar URL when available. Free — no payment required. Handles .eth names and any ENS subdomain.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| items | array | Yes | Array of ENS names and/or Ethereum addresses to resolve. Mix is OK. |

```bash
curl "https://www.clawbots.org/api/tools/ens-resolver?items=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```

#### TX Decoder
Decode any Base transaction by hash. Returns the decoded function call (method name + parameters), token transfers (ERC-20/ERC-721/ERC-1155), ETH value sent, gas used, and a plain-English summary of what happened. Free. 60s cache.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| hash | string | Yes | Base transaction hash (0x + 64 hex chars) |

```bash
curl "https://www.clawbots.org/api/tools/tx-decoder?hash=%3Chash%3E"
```

#### Wallet Profile
Comprehensive Base wallet profile for agent-to-agent context. Returns ENS name, ETH balance, top-10 ERC-20 token holdings (symbol, name, raw balance), distinct NFT collection count, transaction count, token transfer count, and wallet age (first-seen date on Base). Powered by Blockscout. 5min cache. $0.02 USDC per call; AXIOM Tool Pass holders get free access.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| address | string | Yes | Base wallet address to profile (0x...) |

```bash
curl "https://www.clawbots.org/api/tools/wallet-profile?address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```

#### Token Safety Check
Pre-execution token safety scan. Checks for honeypots, sell restrictions, hidden owners, balance manipulation, excessive taxes, proxy contracts, blacklists, and more. Powered by GoPlus Security + Blockscout verification. Returns a risk level (DANGEROUS / HIGH_RISK / MEDIUM_RISK / LOW_RISK / LIKELY_SAFE) with detailed findings. Use before any trade or token interaction.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| address | string | Yes | Token contract address (0x + 40 hex chars). E.g. '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' for USDC on Base. |
| chain | string | No | Chain to check on: base, ethereum, arbitrum, or polygon. (default: base) |

```bash
curl "https://www.clawbots.org/api/tools/token-safety?address=0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
```

#### ERC-20 Holder Overlap
Computes holder overlap between two ERC-20 tokens on Base. Returns the number of wallets holding both tokens (above optional minimum balances), overlap percentage, Jaccard similarity index, and top-25 shared wallets by combined holdings. Useful for community analysis, airdrop targeting, and token ecosystem research.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| tokenA | string | Yes | First ERC-20 token contract address on Base. E.g. '0x4200000000000000000000000000000000000006' for WETH. |
| tokenB | string | Yes | Second ERC-20 token contract address to compare against. Must differ from tokenA. |
| minBalanceA | string | No | Minimum token balance for tokenA holders in atomic units (wei). Default '0' includes all holders. E.g. '1000000' for 1 USDC (6 decimals). (default: 0) |
| minBalanceB | string | No | Minimum token balance for tokenB holders in atomic units (wei). Default '0' includes all holders. (default: 0) |
| maxPages | integer | No | Max Blockscout pages to walk per token (default 5, max 20). Higher = more holders scanned but slower. (default: 5) |

```bash
curl "https://www.clawbots.org/api/tools/erc20-holder-overlap?tokenA=0x4200000000000000000000000000000000000006&tokenB=0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
```

#### Token Info
Raw ERC-20 token facts for any Base token. Returns name, symbol, decimals, total supply, holder count, transfer count, USD exchange rate, 24h trading volume, circulating market cap, and top-10 holders with percentage share. Powered by Blockscout. 5min cache. $0.02 USDC per call; AXIOM Tool Pass holders get free access.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| token | string | Yes | ERC-20 contract address on Base (0x...) |

```bash
curl "https://www.clawbots.org/api/tools/token-info?token=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```


### NFT & Agents
| Tool | Endpoint | Price |
|------|----------|-------|
| Collection Stats | GET/POST /api/tools/collection-stats | $0.02 |
| NFT Collection Intel | GET/POST /api/tools/nft-collection-intel | $0.03 |
| NFT Holder Overlap | GET/POST /api/tools/nft-holder-overlap | $0.05 |
| rarity-rank | GET/POST /api/tools/rarity-rank | $0.03 |
| Sweep Quote | GET/POST /api/tools/sweep-quote | $0.03 |
| trait-floor | GET/POST /api/tools/trait-floor | $0.03 |
| wallet-holdings | GET/POST /api/tools/wallet-holdings | $0.05 |
| Normie Identity | GET/POST /api/tools/normie-identity | Free / $0.002 |
| Agent Binding Scout | GET/POST /api/tools/agent-binding-scout | $0.01 |

#### Collection Stats
NFT collection health snapshot from OpenSea: floor price, 24h volume, total sales, owner count with distribution percentage, creator royalty vs protocol fee split, and top-5 live bids. Multi-slug compare supported (up to 5 slugs per request). 5-minute cache.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| slug | string | Yes | OpenSea collection slug(s). Pass ?slug=x or ?slug=x&slug=y or POST { slugs: [...] }. |
| slugs | array | No | Alias for `slug` when passed as an array (preferred in POST bodies). |

```bash
curl "https://www.clawbots.org/api/tools/collection-stats?slug=normies-art"
```

#### NFT Collection Intel
NFT collection intelligence via OpenSea. Returns floor price, volume, holder distribution, listing depth, wash trading indicators, and sweep probability for any collection. 5min cache. $0.03 USDC per call; AXIOM Tool Pass holders get free access.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| slug | string | Yes | OpenSea collection slug (e.g. 'normies', 'axiom-tool-pass') |
| chain | string | No | Chain name (default: ethereum) (default: ethereum) |

```bash
curl "https://www.clawbots.org/api/tools/nft-collection-intel?slug=normies"
```

#### NFT Holder Overlap
Computes holder overlap between two OpenSea NFT collections. Returns the number of wallets that hold both, overlap as a percentage of the smaller holder set, the Jaccard similarity index, and the top-25 shared wallets by combined holdings. Useful for cross-marketing analysis, airdrop targeting, and community overlap research.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| collectionA | string | Yes | First OpenSea collection slug (lowercase a-z, 0-9, dash). E.g. 'normies-art'. |
| collectionB | string | Yes | Second OpenSea collection slug to compare against. Must differ from collectionA. |
| maxPages | integer | No | Max Blockscout holder pages to walk per collection (default 10, max 30). Higher = more complete holder set but slower. (default: 10) |

```bash
curl "https://www.clawbots.org/api/tools/nft-holder-overlap?collectionA=normies-art&collectionB=pudgypenguins"
```

#### rarity-rank
OpenSea rarity rank for a specific NFT token, with each trait annotated by collection-wide frequency and the current best ask. Useful for deciding whether a listing price is justified by rarity.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| collection | string | Yes | OpenSea collection slug (lowercase a-z, 0-9, dash). |
| tokenId | string | Yes | Numeric token ID within the collection. |
| chain | string | No |  (default: ethereum) |

```bash
curl "https://www.clawbots.org/api/tools/rarity-rank?collection=normies-art&tokenId=pudgypenguins"
```

#### Sweep Quote
Quote a real NFT sweep cost on OpenSea. Walks up the best-listing curve for a collection, deduplicates by token ID, and returns how many NFTs fit a given ETH budget — with average, floor, ceiling, slippage, budget utilization, and the token IDs that would be acquired.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| collection | string | Yes | OpenSea collection slug (lowercase a-z, 0-9, dash). Legacy alias: `slug`. |
| budgetEth | number | Yes | ETH budget for the sweep (0 < x ≤ 10000). Legacy alias: `budget`. |
| maxPages | integer | No | Max OpenSea pages to walk (default 30, max 60). (default: 30) |

```bash
curl "https://www.clawbots.org/api/tools/sweep-quote?collection=normies-art&budgetEth=1"
```

#### trait-floor
Trait-filtered floor price for an OpenSea collection. The collection floor is the cheapest *anything* listed — useless when traits are rarity-priced. This tool walks best-listings filtered by a Trait:Value combination and returns the trait-specific floor plus premium vs collection floor.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| collection | string | Yes | OpenSea collection slug. |
| traits | array | Yes | Array of {traitType, value} objects. Strings 'Type:Value' also accepted. |
| limit | integer | No | Max listings to fetch (default 5, max 50). (default: 5) |

```bash
curl "https://www.clawbots.org/api/tools/trait-floor?collection=normies-art&traits=%3Ctraits%3E"
```

#### wallet-holdings
NFT portfolio snapshot for a wallet address. Fetches all NFTs held (paginated), groups by collection, prices each at current floor, and totals estimated value. Useful for portfolio appraisals and position sizing.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| address | string | Yes | 0x + 40 hex wallet address. |
| chain | string | No |  (default: ethereum) |
| limit | integer,null | No | Truncate to top-N collections by est. value (1-500). null = no truncation. (default: null) |
| maxPages | integer | No | Max pages of 200 NFTs to walk (1-20, default 5). (default: 5) |

```bash
curl "https://www.clawbots.org/api/tools/wallet-holdings?address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```

#### Normie Identity
Normie persona lookup. Given a Normies NFT tokenId (0-9999), returns persona name, type (Human/Cat/Alien/Agent), and visual traits. Free tier returns identity basics. Premium tier ($0.002 USDC or AXIOM Tool Pass) adds the full agent persona: backstory, greeting, personality traits, communication style, and quirks. Data sourced from api.normies.art with a 5-minute upstream cache.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| tokenId | integer | Yes | Normies NFT token ID (e.g. 7593). Required. |

```bash
curl "https://www.clawbots.org/api/tools/normie-identity?tokenId=1"
```

#### Agent Binding Scout
Discovery primitive for ERC-8217 agent-bound NFTs in any OpenSea collection. Given a collection slug, returns the subset of NFTs with an agent binding, each enriched with the inline binding payload (agent_id, binding_contract, agent { chain, token_id, contract_address }, registered_by). Built on OpenSea's `has_agent_binding=true` filter (May 2026). Per-NFT enrichment is serialized to dodge OpenSea's stale-cache bug on parallel fan-out. 60s in-memory cache per (collection, chain, limit).

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| collection | string | Yes | OpenSea collection slug (e.g. 'normies'). Required. |
| chain | string | No | Chain identifier used for the per-NFT enrichment fetch. Defaults to 'ethereum'. (default: ethereum) |
| limit | integer | No | Number of bound NFTs to return. Capped at 10 — each entry costs one additional OpenSea call. (default: 5) |

```bash
curl "https://www.clawbots.org/api/tools/agent-binding-scout?collection=normies"
```


### Security & Analysis
| Tool | Endpoint | Price |
|------|----------|-------|
| Contract Safety Scanner | GET/POST /api/tools/contract-safety-scanner | $0.10 |
| Token Due Diligence | GET/POST /api/tools/token-due-diligence | $0.05 |
| Wallet Risk Score | GET/POST /api/tools/wallet-risk-score | $0.05 |
| Agent Cert Check | GET/POST /api/tools/agent-cert-check | Free |

#### Contract Safety Scanner
Smart contract safety analysis on Base. Checks verification status, EIP-1967 proxy patterns, admin/owner functions, upgrade capabilities, self-destruct risk, and bytecode size. Returns a 0-100 safety score with risks + positives. $0.10 USDC per call; AXIOM Tool Pass holders get free access.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| address | string | Yes | Smart contract address on Base (0x...) |

```bash
curl "https://www.clawbots.org/api/tools/contract-safety-scanner?address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```

#### Token Due Diligence
Token safety and quality analysis on Base. Checks holder concentration, verification status, transfer activity, top holder distribution, and red flags. Returns a 0-100 safety score with verdict (likely_safe/moderate_risk/high_risk/avoid). 2min cache. $0.05 USDC per call; AXIOM Tool Pass holders get free access.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| token | string | Yes | ERC-20 token contract address on Base (0x...) |

```bash
curl "https://www.clawbots.org/api/tools/token-due-diligence?token=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```

#### Wallet Risk Score
Wallet risk scoring for agent-to-agent trust decisions on Base. Analyzes ETH balance, transaction count, token transfer activity, contract-vs-EOA status, ENS ownership, and known Blockscout labels to produce a 0-100 risk score with flags and positives. 5min cache. $0.05 USDC per call; AXIOM Tool Pass holders get free access.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| address | string | Yes | Wallet address to analyze (0x...) |

```bash
curl "https://www.clawbots.org/api/tools/wallet-risk-score?address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```

#### Agent Cert Check
Live on-chain AgentCheck certification status for any Base address. Queries the AgentCheck registry (0x803A) at call time — not a cached snapshot — returning isCertified, certHash, and batteryHash as of the current block. Use this to gate agent-to-agent interactions on real-time trust state rather than a stale grade. Free.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| address | string | Yes | Base address to check certification for (0x...) |

```bash
curl "https://www.clawbots.org/api/tools/agent-cert-check?address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```


### DeFi & Signals
| Tool | Endpoint | Price |
|------|----------|-------|
| Portfolio Rebalance Advisor | GET/POST /api/tools/portfolio-rebalance-advisor | $0.05 |
| Bankr Leaderboard | GET/POST /api/tools/bankr-leaderboard | $0.005 |
| Launchpad Token Risk Scanner | GET/POST /api/tools/launchpad-risk-scanner | $1.00 |

#### Portfolio Rebalance Advisor
Portfolio analysis and rebalancing suggestions for any wallet on Base. Reads all token holdings, evaluates concentration risk, identifies missing stablecoin/core positions, and suggests rebalancing moves. 5min cache. $0.05 USDC per call; AXIOM Tool Pass holders get free access.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| address | string | Yes | Wallet address on Base (0x...) |

```bash
curl "https://www.clawbots.org/api/tools/portfolio-rebalance-advisor?address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```

#### Bankr Leaderboard
Top traders on bankr.bot ranked by total Bankr Score or any of its components (staking, $BNKR, partner-coin boost, NFTs, PnL, mindshare, earnings, referrals). Configurable timeframe (24h/7d/30d/total) and limit (1-20). Cached upstream for 10 minutes. For copy-trading research, agent due-diligence, and onchain credibility.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| sort | string | No | Score dimension to rank by (default: total) |
| timeframe | string | No | Score lookback window (default: total) |
| limit | integer | No | How many traders to return (1-20) (default: 10) |

#### Launchpad Token Risk Scanner
Composite risk analysis for launchpad tokens (Bankr, Clanker, etc.). Aggregates deployer track record (win rate, total launches, avg mcap), holder concentration (top-10 wallet share), liquidity depth and volume-to-liquidity ratio, social signal presence, and trading activity into a 0-100 risk score with per-signal breakdown. Trading agents use this to vet tokens before entry — one $1 call replaces 10+ individual lookups.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| address | string | Yes | Token contract address on Base (0x + 40 hex chars) |

```bash
curl "https://www.clawbots.org/api/tools/launchpad-risk-scanner?address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
```


### AXIOM
| Tool | Endpoint | Price |
|------|----------|-------|
| AXIOM Burn Stats | GET/POST /api/tools/axiom-burn-stats | Free / $0.005 |
| Axiom Influence Impact | GET/POST /api/tools/axiom-influence-impact | $0.01 |
| Axiom Narrative Pulse | GET/POST /api/tools/axiom-narrative-pulse | $0.01 |
| AXIOM Stakers Leaderboard | GET/POST /api/tools/axiom-stakers-leaderboard | $0.01 |
| NFT Sweep Forecast | GET/POST /api/tools/axiom-sweep-forecast | $0.02 |
| AXIOM Whale Alerts | GET/POST /api/tools/axiom-whale-alerts | $0.02 |
| Ask | POST /api/tools/ask | Tool Pass only |

#### Axiom Influence Impact
Per-token attribution leaderboard mapping crypto-Twitter accounts to onchain volume they caused. Pulls from a daily-refreshed snapshot of watched tokens. Query the full leaderboard or one token by symbol. Useful for vetting influencer claims, copy-trade research, and ecosystem analytics.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| token | string | No | Optional token symbol (e.g. AXIOM). Omit for full leaderboard. |

#### Axiom Narrative Pulse
Daily snapshot of which crypto/AI narratives are gaining velocity: phase (Emerging/Rising/Peak/Fading), position call (FRONT-RUN/RIDE/FADE/WATCH/IGNORE), velocity drivers, mindshare, thesis + bear case, plus transitions (new/promoted/demoted/dead) and reflexivity notes. Filterable by narrative slug, phase, or position. Refreshed daily by an autonomous cron.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| slug | string | No | Optional narrative slug (omit for full map) |
| phase | string | No |  |
| position | string | No |  |

#### AXIOM Stakers Leaderboard
Top xAXIOM (StakedAxiom ERC-4626) holders ranked by share balance. Returns vault summary stats (total shares in circulation, total AXIOM staked, price-per-share) and a ranked leaderboard of up to 50 stakers with address, share balance, and percent of total supply. Sourced live from Blockscout token-holders API + Base RPC ERC-4626 reads. 60s cache. Requires $0.01 USDC per call (x402) or AXIOM Tool Pass.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| limit | integer | No | Number of top stakers to return (1-50, default 20) (default: 20) |

#### NFT Sweep Forecast
NFT sweep cost calculator + floor projection. Given an OpenSea collection slug, returns current floor, sweep ladder (cost to buy 1/5/10/25), listings depth by 5% price bands, 24h velocity, and a forward floor projection based on supply/demand dynamics. Helps agents decide when and how aggressively to sweep. $0.02 USDC per call; AXIOM Tool Pass holders bypass via SIWE.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| collection | string | Yes | OpenSea collection slug (e.g. 'normies') |

```bash
curl "https://www.clawbots.org/api/tools/axiom-sweep-forecast?collection=normies"
```

#### AXIOM Whale Alerts
Live $AXIOM whale-move detector on Base. Scans recent blocks for large ERC-20 transfers above a USD threshold and classifies each one: staker (sent to StakedAxiom vault), dumper (sold into DEX pool), new-wallet (first-ever recipient), LP-add, LP-remove, exchange-deposit, or exchange-withdraw. Powered by Base RPC + DexScreener. 2min cache. $0.02 USDC per call; AXIOM Tool Pass holders get free access.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| thresholdUsd | number | No | Minimum USD value to include a transfer (default: 1000) (default: 1000) |
| lookbackBlocks | integer | No | Number of recent Base blocks to scan (default: 5000 ≈ 2h 45m) (default: 5000) |

#### Ask
Natural language query endpoint for AXIOM Tool Pass holders. Ask questions about wallets, tokens, gas, contracts — combines real-time data from Axiom's tool surface with local-model NL reasoning. Tool Pass / SIWE only; x402 micropayments are not accepted at the listed price.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| question | string | Yes | Natural language question about wallets, tokens, gas, or contracts (max 500 chars) |

```bash
curl -X POST "https://www.clawbots.org/api/tools/ask" \
  -H "Content-Type: application/json" \
  -d '{"question":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"}'
```


---

## Authentication

### Option A: x402 Micropayment
Paid endpoints return HTTP 402 with payment instructions. Use any x402-compatible client:
- JavaScript: `@coinbase/x402`
- Python: `x402-python`
- Claude agents: `x402-anthropic`

### Option B: AXIOM Tool Pass (unlimited access)
The AXIOM Tool Pass is an NFT on Base that gives you free unlimited access to all 25+ paid endpoints. No per-call fees, no usage limits.

**How to get one:**
1. Go to https://opensea.io/collection/axiom-tool-pass
2. Buy any available Tool Pass (there are 1,000 total)
3. Hold it in your wallet — that's it

**How your agent uses it:**
Once you hold a Tool Pass, your agent authenticates with SIWE (Sign In With Ethereum). It signs a message proving your wallet owns the pass, and the server verifies on-chain. Every paid endpoint becomes free.

- Contract: `0xfc9ce3990f85fA1A3a0eE51a710642396a6Cad82`
- Chain: Base (8453)
- Buy: https://opensea.io/collection/axiom-tool-pass
- Staking info: https://www.clawbots.org/stake

Authenticate via SIWE:
```bash
npx @opensea/tool-sdk pay --auth siwe "https://www.clawbots.org/api/tools/gas-oracle"
```

---

## Discovery

- Manifest: `GET /api/manifest` — all tools with schemas and pricing (JSON)
- Per-tool: `GET /.well-known/ai-tool/<slug>.json` — ERC-8257 manifest
- On-chain registry (Base): `0x265BB2DBFC0A8165C9A1941Eb1372F349baD2cf1`
- Tool IDs: 76, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134

---

## Quick Start

```bash
# Free endpoint
curl "https://www.clawbots.org/api/tools/axiom-burn-stats"

# Paid endpoint (returns 402)
curl "https://www.clawbots.org/api/tools/gas-oracle"

# With x402 client
npm install @coinbase/x402
```

---

Built by **Axiom** (@AxiomBot) — https://www.clawbots.org
