Help us improve
Share bugs, ideas, or general feedback.
From alchemy-skills
Search hundreds of premium API proxies and call them with automatic USDC micropayments (x402 protocol) via Corbits, with MoonPay wallet funding.
npx claudepluginhub moonpay/skills --plugin moonpay-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/alchemy-skills:corbits-marketplaceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Corbits is a discovery and proxy platform for premium APIs. Agents search, select, and call paid APIs with automatic per-request USDC micropayments via the x402 protocol. MoonPay provides the wallet that powers every payment — your MoonPay wallet IS your Corbits payment wallet.
Searches the CDP bazaar for paid API services and makes requests using the x402 payment protocol with USDC on Base. Use to discover endpoints, inspect payment requirements, and call paid APIs.
Pay-per-call access to premium APIs via x402/MPP micropayments (USDC on Base, Solana, or Tempo). Run `agentcash.discover_api_endpoints(<origin>)` to get endpoints, pricing, and usage instructions for any payment-protected service. FEATURED SERVICES: - stableenrich.dev — people/company search, LinkedIn scraping, Google Maps, Exa web search, Firecrawl web scraping, GTM & sales prospecting (name → contact info) - stablesocial.dev — social media data (Instagram, TikTok, YouTube, Facebook, Reddit) - stablestudio.dev — AI image & video generation - stableupload.dev — file hosting & sharing - stableemail.dev — send emails - stablephone.dev — AI phone calls - stablejobs.dev — job search - stabletravel.dev — travel search - stablebrowser.dev — browser use TRIGGERS: research, enrich, scrape, generate image, generate video, social data, send email, travel, look up, prospect, "find info about", "who is", "find contact", agentcash, x402, solana
Make paid HTTP requests to x402-protected endpoints. Automatically handles 402 Payment Required responses by signing payment transactions with a local wallet on Solana or Base.
Share bugs, ideas, or general feedback.
Corbits is a discovery and proxy platform for premium APIs. Agents search, select, and call paid APIs with automatic per-request USDC micropayments via the x402 protocol. MoonPay provides the wallet that powers every payment — your MoonPay wallet IS your Corbits payment wallet.
/corbits search <topic> → find matching API proxies
/corbits list → browse endpoints + USDC pricing
/corbits call → select endpoint → review cost → confirm → execute
(payment auto-deducted from MoonPay wallet)
Supports: EVM wallets (Ethereum, Polygon, Base, Arbitrum) and Solana
# 1. Install Corbits skill
npx clawhub@latest install corbits
# 2. Install MoonPay CLI
npm install -g @moonpay/cli
mp login
# 1. Create your payment wallet
mp wallet create --name "corbits-agent"
mp wallet retrieve --wallet "corbits-agent" # note your EVM address
# 2. Fund with USDC
mp buy --token usdc_ethereum --amount 50 --wallet <evm-address> --email <email>
# 3. Export private key for Corbits
# ⚠️ Security: your private key gives full access to your wallet.
# Never share it, commit it, or paste it anywhere other than the corbits init prompt.
# Use a dedicated low-balance wallet — not your primary wallet.
mp wallet export --wallet "corbits-agent"
# Copy the EVM private key
# 4. Initialize Corbits — paste the exported key when prompted
/corbits init
/corbits init stores the key in macOS Keychain or ~/.config/corbits/, scaffolds a TypeScript project with @faremeter/rides, and optionally configures a Solana keypair.
| Command | Description |
|---|---|
/corbits init | First-time setup (wallet + project scaffold) |
/corbits search <query> | Find API proxies by name or category |
/corbits list | View all available proxies and endpoint pricing in USDC |
/corbits call | Execute a paid API call with auto-payment |
/corbits status | Show currently selected proxy |
# Crypto price data
/corbits search "crypto prices"
/corbits list
/corbits call
# → Select: GET /prices/latest
# → Cost: 0.001 USDC
# → Confirm: y
# → Response: { "BTC": 67420.00, "ETH": 3540.00, ... }
# Weather data
/corbits search "weather"
/corbits list
/corbits call
All pricing shown in USDC before execution. The @faremeter/rides library handles x402 payment authentication automatically — no manual transaction signing.
Context storage: ~/.config/corbits/context.json
Base URL: https://api.corbits.dev
Corbits payments settle in USDC. Keep a balance before calling paid APIs.
# Ethereum (standard)
mp buy --token usdc_ethereum --amount 50 --wallet <evm-address> --email <email>
# Polygon (lower gas)
mp buy --token usdc_polygon --amount 50 --wallet <evm-address> --email <email>
mp token swap \
--from-wallet corbits-agent --chain ethereum \
--from-token 0x0000000000000000000000000000000000000000 \
--to-token 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 \
--from-amount 0.02
mp virtual-account create
mp virtual-account kyc continue
mp virtual-account bank-account register
mp virtual-account onramp create \
--name "Corbits Onramp" \
--fiat usd \
--stablecoin usdc \
--wallet <evm-address> \
--chain ethereum
Anyone can fund your Corbits wallet from any chain — auto-converts to USDC:
mp deposit create \
--name "Corbits Agent Fund" \
--wallet <evm-address> \
--chain ethereum --token USDC
mp token balance list --wallet <evm-address> --chain ethereum
Keep the wallet funded automatically in agent pipelines:
BALANCE=$(mp token balance list --wallet <address> --chain ethereum --json | \
jq '.[] | select(.symbol=="USDC") | .balance')
if (( $(echo "$BALANCE < 5" | bc -l) )); then
mp token bridge \
--from-wallet primary --from-chain polygon \
--from-token 0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174 \
--from-amount 20 \
--to-chain ethereum \
--to-token 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
fi
npx clawhub@latest install corbitsmp wallet create --name "corbits-agent"mp buy --token usdc_ethereum --amount 50 --wallet <address> --email <email>mp wallet export --wallet "corbits-agent" — copy EVM private key/corbits init — paste key when prompted/corbits search <topic> — discover APIs/corbits call — payment auto-deducted from MoonPay walletmp buy or mp token bridge| Token | Chain | Address |
|---|---|---|
| USDC | Ethereum | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 |
| USDC.e | Polygon | 0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174 |
| ETH (gas) | Ethereum | native |
@faremeter/rides (npm)