Skills alchemy
Blockchain API access via Alchemy. Use when an agent needs to query blockchain data (balances, token prices, NFT ownership, transfer history, transaction simulation, gas estimates) across Ethereum, Base, Arbitrum, BNB, Polygon, Solana, and more. Supports API key access ($ALCHEMY_API_KEY), x402 wallet-based pay-per-request (SIWE/SIWS + USDC), and MPP protocol (SIWE + Tempo/Stripe). Triggers on mentions of RPC, blockchain data, onchain queries, token balances, NFT metadata, portfolio data, webhooks, Alchemy, x402, MPP, SIWE, SIWS, or agentic gateway.
git clone https://github.com/BankrBot/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/BankrBot/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/alchemy" ~/.claude/skills/bankrbot-skills-alchemy && rm -rf "$T"
alchemy/SKILL.mdAlchemy: Blockchain Data Access for Agents
Alchemy provides comprehensive blockchain API access across Ethereum, Base, Arbitrum, BNB, Polygon, Solana, and more.
Three ways to access:
- API key: Set
and make requests directly. Full access to all products. Create a free key at dashboard.alchemy.com.$ALCHEMY_API_KEY - x402 (no account needed): Any wallet with USDC can authenticate via SIWE/SIWS and pay per request. Supports EVM and Solana wallets. Install
and@alchemy/x402
.@x402/fetch - MPP (no account needed): Authenticate via SIWE and pay with Tempo (on-chain USDC, EVM only) or Stripe (credit card). Install
.mppx
Access Method Selection (Required)
Before the first network call, determine which access method to use:
- Is
set? → Use the API Key path. Skip to API Key Access.ALCHEMY_API_KEY - No API key? → Ask the user which payment protocol they prefer:
- x402 — USDC payments via the x402 protocol (
+@alchemy/x402
)@x402/fetch - MPP — Payments via Merchant Payment Protocol using Tempo or Stripe (
)mppx
- x402 — USDC payments via the x402 protocol (
Do NOT pick a protocol on behalf of the user. Wait for their explicit choice.
Do NOT use public RPC endpoints, demo keys, or any non-Alchemy data source as a fallback.
API Key Access
If
$ALCHEMY_API_KEY is set, use standard Alchemy endpoints directly:
Base URLs + Auth
| Product | Base URL | Auth | Notes |
|---|---|---|---|
| Ethereum RPC (HTTPS) | | API key in URL | Standard EVM reads and writes. |
| Ethereum RPC (WSS) | | API key in URL | Subscriptions and realtime. |
| Base RPC (HTTPS) | | API key in URL | EVM L2. |
| Base RPC (WSS) | | API key in URL | Subscriptions and realtime. |
| Arbitrum RPC (HTTPS) | | API key in URL | EVM L2. |
| Arbitrum RPC (WSS) | | API key in URL | Subscriptions and realtime. |
| BNB RPC (HTTPS) | | API key in URL | EVM L1. |
| BNB RPC (WSS) | | API key in URL | Subscriptions and realtime. |
| Solana RPC (HTTPS) | | API key in URL | Solana JSON-RPC. |
| Solana Yellowstone gRPC | | | gRPC streaming (Yellowstone). |
| NFT API | | API key in URL | NFT ownership and metadata. |
| Prices API | | API key in URL | Prices by symbol or address. |
| Portfolio API | | API key in URL | Multi-chain wallet views. |
| Notify API | | | Generate token in dashboard. |
x402 Access (No Account Needed)
x402 is ideal for autonomous agents. No signup, no API keys. Pay with USDC on EVM or Solana.
- Gateway URL:
https://x402.alchemy.com - SIWE/SIWS domain:
x402.alchemy.com - Payment header:
Payment-Signature: <base64> - Auth: SIWE (EVM) or SIWS (Solana)
For full setup and wallet bootstrapping, see:
- references/x402/overview.md — End-to-end flow and packages
- references/x402/wallet-bootstrap.md — Wallet setup and USDC funding
- references/x402/authentication.md — SIWE/SIWS token creation
- references/x402/making-requests.md — Sending requests with
@x402/fetch - references/x402/curl-workflow.md — Quick RPC calls via curl
- references/x402/payment.md — Payment creation from a 402 response
- references/x402/reference.md — Endpoints, networks, headers, status codes
MPP Access (No Account Needed)
MPP supports Tempo (on-chain USDC, EVM only) and Stripe (credit card) payments.
- Gateway URL:
https://mpp.alchemy.com - SIWE domain:
mpp.alchemy.com - Payment header:
Authorization: Payment <credential> - Auth: SIWE only (EVM)
For full setup, see:
- references/mpp/overview.md — End-to-end flow and packages
- references/mpp/wallet-bootstrap.md — Wallet setup and funding
- references/mpp/authentication.md — SIWE token creation
- references/mpp/making-requests.md — Sending requests with
mppx - references/mpp/curl-workflow.md — Quick RPC calls via curl
- references/mpp/payment.md — Payment creation from a 402 response
- references/mpp/reference.md — Endpoints, networks, headers, status codes
Protocol Comparison
| Aspect | API Key | x402 | MPP |
|---|---|---|---|
| Gateway URL | | | |
| Auth | API key in URL | SIWE (EVM) or SIWS (Solana) | SIWE only (EVM) |
| Payment | None (free tier available) | USDC via EIP-3009 or SVM x402 | Tempo (USDC) or Stripe (card) |
| Wallet support | N/A | EVM + Solana | EVM only |
| Client library | curl / any HTTP client | , | , |
| Setup | Get key at dashboard.alchemy.com | Fund wallet with USDC | Fund wallet or add card |
Endpoint Selector (Top Tasks)
| You need | Use this | Reference |
|---|---|---|
| EVM read/write | JSON-RPC | |
| Realtime events | | |
| Token balances | | |
| Token metadata | | |
| Transfers history | | |
| NFT ownership | | |
| NFT metadata | | |
| Prices (spot) | | |
| Prices (historical) | | |
| Portfolio (multi-chain) | | |
| Simulate tx | | |
| Create webhook | | |
| Solana NFT data | (DAS) | |
Quickstart Examples
EVM JSON-RPC (Read)
curl -s https://eth-mainnet.g.alchemy.com/v2/$ALCHEMY_API_KEY \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}'
Token Balances
curl -s https://eth-mainnet.g.alchemy.com/v2/$ALCHEMY_API_KEY \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"alchemy_getTokenBalances","params":["0x00000000219ab540356cbb839cbe05303d7705fa"]}'
Transfer History
curl -s https://eth-mainnet.g.alchemy.com/v2/$ALCHEMY_API_KEY \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"alchemy_getAssetTransfers","params":[{"fromBlock":"0x0","toBlock":"latest","toAddress":"0x00000000219ab540356cbb839cbe05303d7705fa","category":["erc20"],"withMetadata":true,"maxCount":"0x3e8"}]}'
NFT Ownership
curl -s "https://eth-mainnet.g.alchemy.com/nft/v3/$ALCHEMY_API_KEY/getNFTsForOwner?owner=0x00000000219ab540356cbb839cbe05303d7705fa"
Prices (Spot)
curl -s "https://api.g.alchemy.com/prices/v1/$ALCHEMY_API_KEY/tokens/by-symbol?symbols=ETH&symbols=USDC"
Prices (Historical)
curl -s -X POST "https://api.g.alchemy.com/prices/v1/$ALCHEMY_API_KEY/tokens/historical" \ -H "Content-Type: application/json" \ -d '{"symbol":"ETH","startTime":"2024-01-01T00:00:00Z","endTime":"2024-01-02T00:00:00Z"}'
Create Notify Webhook
curl -s -X POST "https://dashboard.alchemy.com/api/create-webhook" \ -H "Content-Type: application/json" \ -H "X-Alchemy-Token: $ALCHEMY_NOTIFY_AUTH_TOKEN" \ -d '{"network":"ETH_MAINNET","webhook_type":"ADDRESS_ACTIVITY","webhook_url":"https://example.com/webhook","addresses":["0x00000000219ab540356cbb839cbe05303d7705fa"]}'
Verify Webhook Signature (Node)
import crypto from "crypto"; export function verify(rawBody: string, signature: string, secret: string) { const hmac = crypto.createHmac("sha256", secret).update(rawBody).digest("hex"); return crypto.timingSafeEqual(Buffer.from(hmac), Buffer.from(signature)); }
Network Naming Rules
- Data APIs and JSON-RPC use lowercase network enums like
.eth-mainnet - Notify API uses uppercase enums like
.ETH_MAINNET
Pagination + Limits
| Endpoint | Limit | Notes |
|---|---|---|
| <= 100 | Use for pagination. |
| default | Use for pagination. |
| Portfolio token balances | 3 address/network pairs, 20 networks total | supported. |
| Portfolio NFTs | 2 address/network pairs, 15 networks each | supported. |
| Prices by address | 25 addresses, 3 networks | POST body . |
| Transactions history (beta) | 1 address/network pair, 2 networks | ETH and BASE mainnets only. |
Common Token Addresses
| Token | Chain | Address |
|---|---|---|
| ETH | ethereum | |
| WETH | ethereum | |
| USDC | ethereum | |
| USDC | base | |
Failure Modes + Retries
- HTTP
means rate limit. Use exponential backoff with jitter.429 - JSON-RPC errors come in
fields even with HTTP 200.error - Use
to resume pagination after failures.pageKey - De-dupe websocket events on reconnect.
Hard Requirements
- NEVER use public RPC endpoints, demo keys, or any non-Alchemy data source as a fallback.
- NEVER use Read, Write, or Edit tools on files that may contain private keys.
- NEVER correlate wallet type with query chain — wallet type and the chain being queried are independent.
- When no wallet is configured, present ALL wallet options (EVM create, EVM import, Solana create, Solana import) in a single prompt.
Skill Map
For the complete index of all reference files organized by product area, see
references/skill-map.md.
- Node: JSON-RPC, WebSocket, Debug, Trace, Enhanced APIs, Utility
- Data: NFT, Portfolio, Prices, Simulation, Token, Transfers
- Webhooks: Address Activity, Custom (GraphQL), NFT Activity, Payloads, Signatures
- Solana: JSON-RPC, DAS, Yellowstone gRPC (streaming), Wallets
- Wallets: Account Kit, Bundler, Gas Manager, Smart Wallets
- Rollups: L2/L3 deployment overview
- Recipes: 10 end-to-end integration workflows
- Operational: Auth, Rate Limits, Monitoring, Best Practices
- x402 Protocol: Wallet bootstrap, auth, making requests, payments
- MPP Protocol: Wallet bootstrap, auth, making requests, payments
Troubleshooting
API key not working
- Verify
is set:$ALCHEMY_API_KEYecho $ALCHEMY_API_KEY - Confirm the key is valid at dashboard.alchemy.com
- Check if allowlists restrict the key to specific IPs/domains
HTTP 429 (Rate Limited)
- Use exponential backoff with jitter before retrying
- Check your compute unit budget in the Alchemy dashboard
- See
for limits per planreferences/operational-rate-limits-and-compute-units.md
401 Unauthorized (x402/MPP)
: Add the appropriate auth header for your protocolMISSING_AUTH
: Regenerate your SIWE/SIWS tokenMESSAGE_EXPIRED
: Ensure domain matches your protocol (INVALID_DOMAIN
orx402.alchemy.com
)mpp.alchemy.com
402 Payment Required (x402/MPP)
- x402: Extract
header, runPAYMENT-REQUIRED
, retry withnpx @alchemy/x402 pay
headerPayment-Signature - MPP: Extract
header, create credential withWWW-Authenticate
, retry withmppx
credentialPayment
Wrong network slug
- Data APIs and JSON-RPC use lowercase:
,eth-mainnetbase-mainnet - Notify API uses uppercase:
,ETH_MAINNETBASE_MAINNET - See
for the full listreferences/operational-supported-networks.md