PayRouters / Overview
Demo environment

Web3 payment orchestration command center

One operating layer for crypto Pay-in, liquidity conversion, and global Payout routing.

Authorized volume$48.7M
+18.4% month over month
Pay-in approval97.8%
Smart fallback active
Settlement cost42 bps
-11 bps optimized
Connected providers0
Across Pay-in, OTC, Payout

Volume by route

Live simulation

Connection health

Connected stack

Connections marketplace

Install, credential, test, and manage Pay-in, OTC, and Payout plugins from one control plane.

Checkout studio

Connected Pay-in plugins appear here automatically. Toggle and drag order to shape the live checkout.

Payment methods

Drag vertically to reorder · switch controls live preview
0 active

Live checkout preview

Acme Labs
ACME / checkout
Pay Acme Labs
$1,450.00
or 1,449.84 USDC

Smart routing rules

Combine Checkout Pay-in providers, OTC liquidity, and Payout rails into merchant-specific connected chains.

Available building blocks

Drag components into the route pipeline below
Pay-in0
Treasury0
OTC liquidity0
Payout rails0

Route chain

Pipeline: Merchant → Pay-in → Treasury → OTC → Payout
Merchant Origin Acme Labs · Global Routing starts here

Rule matrix

Fallback logic changes as the route chain changes.
Market Buyer intent Primary Pay-in Treasury Liquidity (OTC) Settlement Status

Analytics

Executive view of acceptance, cost, speed, and provider concentration.

Successful sessions128k
+22.1%
Average checkout time37s
-9s after ordering
Fallback recovery8.6%
Saved revenue
Provider incidents3
Auto rerouted

Approval trend

Last 14 days

Top method mix

Checkout active order

Global ledger & tracing

Unified transaction states across multi-chain Pay-in, OTC conversion, and fiat Payouts.

Transaction ID / TimeTypeAmountOrchestration PathStatus

Developer Portal & API

One unified JSON schema to integrate 20+ Web3 gateways with PayRouters.

Your API Keypk_live_pr7x...9q
Production Ready
API Latency (p95)112ms
Global Edge Cached
Webhook delivery99.99%
Auto-retry enabled
Active integrations1
E-commerce Backend

Create Payment Order

Unified Endpoint
POST /v1/checkout/orders

Creates a unified payment intent. PayRouters evaluates realtime gas fees, merchant routing rules, and provider health to dispatch the transaction to the optimal downstream gateway.

Request Parameters

amount integer
Amount in the smallest currency unit (e.g., 100 cents to charge $1.00).
currency string
Three-letter ISO currency code (e.g., "usd") or crypto ticker (e.g., "usdc").
routing_preference string
Set to "auto_ai" to let the Orchestration Engine decide, or force a channel like "gate_pay".
Node.js cURL Python
// 1. Initialize PayRouters SDK const payrouters = require('@payrouters/sdk')('sk_live_pr8x...2m'); // 2. Create a unified payment order with auto-routing const order = await payrouters.orders.create({ amount: 145000, // $1,450.00 currency: 'usd', buyer_geo: 'BR', routing_preference: 'auto_ai' }); console.log(order.hosted_url);