Developers
Software that pays for itself,
a sip at a time.
One MCP server, five PaySphere tools. The integration is a config line; the runtime is a budget your agent spends without your supervision and a receipt you read once a month. The unit is $0.0001. The architecture is built for non-custody - your agent's address survives us.
x402 made agents pay over HTTP. AP2 made them prove intent. Tempo gave them a rail. Sippar lets them pay across all of them: any chain in, any chain out, 402-native, no bridge.
Pick your path
Four integration patterns.
Multi-chain X402
Direct x402 payments on any of 12 networks. Standard HTTP 402 flow.
Cross-chain relay
Pay on any chain, access services on any other. 3% relay fee.
MCP tools
25 tools for Claude Code. Algorand, Solana, Stellar, Lava, Agency.
Agency API
Pay-to-automate triggers - webhooks, signing, minting on payment.
The model
The Wise of agent payments.
Wise hid wire transfers behind a clean interface; Wiz did the same for cloud security. Sippar does it for agent payments. Underneath, funds move across a dozen networks, signed by keys split across 34 independent operators and never assembled in one place. On top, your agent makes one call and gets one receipt. The chains and the cryptography are ours to handle, not yours to learn.
Multi-chain x402
Supported chains.
| Chain | Network | Token | Services |
|---|---|---|---|
| Base | Base Mainnet | USDC | 10 |
| Arbitrum | Arbitrum One | USDC | 10 |
| Optimism | OP Mainnet | USDC | 10 |
| Polygon | Polygon PoS | USDC | 10 |
| BNB Chain | BNB Smart Chain | USDC | 10 |
| Celo | Celo Mainnet | USDC | 10 |
| Solana | Solana Mainnet | USDC | 10 |
| Stellar | Stellar Mainnet | USDC | 10 |
| Algorand | Algorand Mainnet | USDC | 10 |
| TON | TON Mainnet | USDC | 10 |
| Ethereum | Ethereum Mainnet | USDC | 10 |
Code samples
Three lines of HTTP, one signed transfer.
// Base (EVM) - USDC payment to an x402 service
import { createWalletClient, http } from 'viem';
import { base } from 'viem/chains';
async function payX402OnBase(serviceUrl: string) {
// 1. Request - server replies 402 with payment requirements
const r1 = await fetch(serviceUrl, { method: 'POST' });
if (r1.status !== 402) return r1.json();
const req = JSON.parse(atob(r1.headers.get('PAYMENT-REQUIRED')!));
// 2. Sign + send USDC on Base
const wallet = createWalletClient({ chain: base, transport: http() });
const hash = await wallet.writeContract({
address: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913', // Base USDC
abi: [{ name: 'transfer', type: 'function',
inputs: [{ name: 'to', type: 'address' }, { name: 'amount', type: 'uint256' }],
outputs: [{ type: 'bool' }] }],
functionName: 'transfer',
args: [req.payToAddress, BigInt(req.maxAmountRequired * 1e6)]
});
// 3. Retry with X-PAYMENT proof
return (await fetch(serviceUrl, {
method: 'POST',
headers: { 'X-PAYMENT': hash }
})).json();
}Cross-chain relay
Pay one chain. Reach any other.
No bridging, no wrapped tokens. Sippar holds liquidity treasuries on every chain. Agent pays its home chain in 8 seconds; Sippar settles to the destination from its native wallet.
Pay on source chain
Agent sends USDC to Sippar treasury on its preferred chain.
Sippar relays
Verifies inbound, calls service, settles outbound from dest-chain treasury.
Service response
Agent gets the answer plus on-chain receipts for both legs.
Source chains: Base, Arbitrum, Optimism, Polygon, BNB, Celo, Solana, Stellar, Ethereum, Algorand, TON, plus Tempo via MPP. Destination chains: any of the above.
Agency API
Pay-to-automate triggers.
Register triggers that execute actions when verified Algorand payments arrive. Perfect for autonomous agents that schedule actions on payment.
Webhook
HTTP POST to your endpoint when payment received.
SignAndBroadcast
Threshold-sign and broadcast Algorand transaction.
InterCanister
Call ICP canister methods with payment data.
MintCkAlgo
Mint ckALGO tokens when payment verified.
MCP tools
25 tools across 5 domains.
Drop-in tools for Claude Code and any MCP-speaking agent. Algorand, Solana, Stellar, Agency, and Lava - full catalog at the manifest endpoints.
Ready to ship?
Browse the registry, try MCP tools with Claude Code, or open a PR.