JSPM

  • Created
  • Published
  • Downloads 1626
  • Score
    100M100P100Q109980F
  • License Apache-2.0

curl for x402 paid APIs. Auto-pays any endpoint on Base and Solana.

Package Exports

  • x402-proxy
  • x402-proxy/package.json

Readme

x402-proxy

curl for x402 paid APIs. Auto-pays HTTP 402 responses with USDC on Base and Solana - zero crypto code on the buyer side.

Quick Start

npx x402-proxy https://twitter.surf.cascade.fyi/user/cascade_fyi

That's it. The endpoint returns 402, x402-proxy pays and streams the response.

First time? Set up a wallet:

npx x402-proxy setup          # generate wallet from BIP-39 mnemonic
npx x402-proxy wallet fund    # see where to send USDC

One mnemonic derives both EVM (Base) and Solana keypairs. Fund either chain and go.

MCP Proxy

Let your AI agent consume any paid MCP server. Configure in Claude, Cursor, or any MCP client:

{
  "mcpServers": {
    "paid-service": {
      "command": "npx",
      "args": ["x402-proxy", "mcp", "https://mcp.example.com/sse"],
      "env": {
        "X402_PROXY_WALLET_MNEMONIC": "your 24 words here"
      }
    }
  }
}

The proxy sits between your agent and the remote server, intercepting 402 responses, paying automatically, and forwarding the result. Your agent never touches crypto.

HTTP Requests

Works like curl. Response body streams to stdout, payment info goes to stderr.

# GET request
x402-proxy https://twitter.surf.cascade.fyi/user/cascade_fyi

# POST with body and headers
x402-proxy --method POST \
  --header "Content-Type: application/json" \
  --body '{"url":"https://x402.org"}' \
  https://web.surf.cascade.fyi/v1/crawl

# Pipe-safe
x402-proxy https://api.example.com/data | jq '.results'

Commands

x402-proxy <url>                    # paid HTTP request (default command)
x402-proxy mcp <url>                # MCP stdio proxy for agents
x402-proxy setup                    # onboarding wizard
x402-proxy status                   # config + wallet + spend summary
x402-proxy wallet                   # show addresses
x402-proxy wallet history           # payment history
x402-proxy wallet fund              # funding instructions
x402-proxy wallet export-key <chain> # bare key to stdout (evm|solana)

All commands support --help for details.

Wallet

A single BIP-39 mnemonic derives both chains:

  • Solana: SLIP-10 Ed25519 at m/44'/501'/0'/0'
  • EVM: BIP-32 secp256k1 at m/44'/60'/0'/0/0

Config stored at $XDG_CONFIG_HOME/x402-proxy/ (default ~/.config/x402-proxy/).

Export keys for other tools

# Pipe-safe - outputs bare key to stdout
MY_KEY=$(npx x402-proxy wallet export-key evm)

Env Vars

Override wallet per-instance (useful for MCP configs):

X402_PROXY_WALLET_MNEMONIC     # BIP-39 mnemonic (derives both chains)
X402_PROXY_WALLET_EVM_KEY      # EVM private key (hex)
X402_PROXY_WALLET_SOLANA_KEY   # Solana private key (base58)

Resolution order: flags > env vars > mnemonic env > wallet.json file.

Library Usage

import {
  createX402ProxyHandler,
  extractTxSignature,
  appendHistory,
  readHistory,
  calcSpend,
} from "x402-proxy";

See the library API docs for details.

License

Apache-2.0