Skip to main content

Public Endpoints

Most Facilitator endpoints require no authentication. The standard payment flow (verify, settle), wallet queries, swap quotes, and health checks are all publicly accessible. This means buyers, sellers, and AI agents can interact with the Facilitator without registering or obtaining API keys. Public endpoints include:
  • Payment verification and settlement (EOA and Smart Wallet)
  • Wallet listing and master wallet lookup
  • Swap quotes and execution
  • Incognito operations
  • Health check

Admin Endpoints

A small set of endpoints used for internal operations require the x-admin-api-key header. These are currently limited to wallet deployment operations.
curl -X POST https://facilitatorv3.b402.ai/deploy/settle \
  -H "Content-Type: application/json" \
  -H "x-admin-api-key: your-admin-key" \
  -d '{ ... }'
HeaderValueRequired For
x-admin-api-keyAdmin API key stringDeploy operations
Admin API keys are used internally by b402 services. If you are integrating as a buyer or seller, you do not need an admin key.

Summary

Endpoint TypeAuth RequiredHeader
Verify / Settle (EOA)No
Verify / Settle (Smart Wallet)No
Wallet queriesNo
Swap operationsNo
Incognito operationsNo
Health checkNo
Deploy operationsYesx-admin-api-key