Skip to main content

What is a Facilitator?

Think of a facilitator as your payment assistant - it sits between clients and servers, verifying payments and settling them on-chain so you don’t have to deal with blockchain nodes, gas fees, or settlement complexity. The simple version: Clients sign payments, facilitators verify them and post them to the blockchain. Everyone’s happy.

Why Use a Facilitator?

Zero Blockchain Hassle

No need to run nodes, manage RPC endpoints, or worry about gas prices

Instant Verification

Check if payments are valid in milliseconds without waiting for blocks

Standardized Flow

Consistent verification and settlement across all x402 implementations

No Custody Risk

Facilitators never hold your funds - they just execute signed authorizations

How It Works

The facilitator handles two critical jobs in the x402 payment flow:
1

Payment Verification

Client sends a signed payment. Facilitator checks:
  • Is the signature valid?
  • Does the amount match what’s required?
  • Has this nonce been used before?
  • Is there enough balance?
2

On-Chain Settlement

After verification, facilitator submits the payment to the blockchain:
  • Executes the EIP-3009 transferWithAuthorization
  • Pays the gas fees (not you!)
  • Returns transaction confirmation

The 402.cat Facilitator

We’ve launched our own facilitator built in Rust with x402-rs. It’s fast, reliable, and handles all the payment complexity for you.

Endpoints

Our facilitator exposes these HTTP endpoints:

Example: Verifying a Payment

Response (Valid):
Response (Invalid):

Example: Settling a Payment

Response (Success):
Response (Failure):

Payment Flow with Facilitator

Here’s how a typical x402 payment flows through the facilitator:

Security Model

No. Facilitators can only execute the exact authorization you signed. They cannot:
  • Change the amount
  • Change the recipient
  • Reuse signatures (nonce protection)
  • Access funds beyond what you authorized
Your funds are safe. The worst case is that:
  • Payments won’t verify temporarily
  • Settlements won’t execute
  • You can switch to another facilitator
Your signed authorizations remain valid and can be submitted by any facilitator or even directly on-chain.
Never. Facilitators only see:
  • Your wallet address (public)
  • Signed authorizations (public data + signature)
  • Transaction amounts (transparent)
Private keys never leave your device.
Facilitators submit transactions on your behalf, which means:
  • They choose gas prices
  • They can see pending payments
  • Settlement timing is in their control (usually 300ms delay)
For MEV-sensitive operations, use shielded swaps ($1 fee) which use private mempools.

Multiple Facilitators

402.cat supports round-robin across multiple facilitators for high availability: If one facilitator is down, the system automatically tries the next.

Building with Facilitators

Option 1: Use Our CLI (Easiest)

Option 2: Direct Integration

Option 3: Manual Facilitator Calls

Error Handling

The facilitator returns structured errors to help debug payment issues:

Performance

Our facilitator is optimized for speed:
  • Verification: < 100ms (signature + balance check)
  • Settlement: ~2-5 seconds (depends on blockchain)
  • Uptime: 99.9% target
  • Rate limits: 1000 requests/min per IP

Supported Networks

Check which networks a facilitator supports:
Response:

Next Steps

x402 Protocol

Learn how the full payment protocol works

CLI Installation

Get started with httpcat CLI (handles facilitators automatically)

API Reference

Explore all paid endpoints

Fee Structure

Understand x402 and trading fees
Facilitators make x402 payments feel instant and gasless from the user’s perspective. They handle all the blockchain complexity so you can focus on building great products.